-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 927 Bytes
/
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
{
"name": "davegthemighty/auth0-token",
"description": "Auth0 Token Service",
"authors": [
{
"name": "Dave G",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.3",
"auth0/auth0-php": "^5.5",
"illuminate/database": "5.*",
"monolog/monolog": "^1.24",
"ramsey/uuid": "^3.6",
"robmorgan/phinx": "^0.10.7",
"slim/php-view": "^2.0.5",
"slim/slim": "^3.0",
"tuupola/cors-middleware": "^0.9.3",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^7",
"php-coveralls/php-coveralls": "^2.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"DavegTheMighty\\SlimBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DavegTheMighty\\SlimBase\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}