-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.28 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "dev-pledge/auth",
"description": "Dev Pledge API Service",
"keywords": [
"auth"
],
"homepage": "https://github.com/Dev-Pledge/API",
"license": "MIT",
"authors": [
{
"name": "John Saunders",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"slim/slim": "^3.1",
"tomwright/extended-pdo": "^1.0",
"tomwright/json": "^1.0",
"vlucas/phpdotenv": "^2.4",
"sentry/sentry": "^1.8",
"nesbot/carbon": "^1.23",
"spomky-labs/base64url": "^1.0",
"ramsey/uuid": "3.7.2",
"jrsaunders/fixerexchangerates": "^2.0",
"league/omnipay": "^3.0",
"omnipay/stripe": "^3.0",
"slim/php-view": "^2.2",
"monolog/monolog": "^1.23",
"jrsaunders/quickcache": "^1.0",
"predis/predis": "^1.1",
"robmorgan/phinx": "^0.10.6",
"moneyphp/money": "^3.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0",
"eaglewu/swoole-ide-helper": "dev-master"
},
"autoload-dev": {
"psr-4": {
"\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"DevPledge\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"start-docker": "docker-compose up",
"start-php": "php -S localhost:8080 -t public index.php",
"test": "phpunit"
}
}