-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1014 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
{
"name": "slim-api-sample",
"license": "MIT",
"authors": [
{
"name": "Mr. Burns",
"email": "[email protected]"
}
],
"require": {
"slim/slim": "^3.3",
"lcobucci/jwt": "^3.1",
"psr/log": "^1.0",
"zendframework/zend-config": "^2.6",
"guzzlehttp/guzzle": "^6.1",
"monolog/monolog": "^1.17",
"robmorgan/phinx": "^0.5.1",
"doctrine/orm": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"behat/behat": "^3.0",
"behat/gherkin": "^4.4",
"mockery/mockery": "^0.9.4",
"fzaninotto/faker": "^1.5"
},
"config": {
"bin-dir": "./bin"
},
"scripts": {
"serve": "php -S 0.0.0.0:8888 -t public"
},
"autoload": {
"psr-4": {
"Salexandru\\": [ "./src/Salexandru", "./tests/unit/Salexandru" ],
"Salexandru\\Behat\\Context\\": "./tests/functional/context"
}
}
}