-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.1 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
{
"name": "ultimate-movie-api",
"description": "Some movie api with great movie categorisation",
"keywords": ["ultimate", "great", "super"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1",
"laravel/lumen-framework": "5.5.*",
"vlucas/phpdotenv": "~2.2",
"doctrine/dbal": "v2.5.4",
"laravel-doctrine/orm": "^1.3",
"laravel-doctrine/fluent": "^1.1",
"laravel-doctrine/migrations": "^1.0",
"laravel-doctrine/extensions": "^1.0",
"illuminate/session": "^5.5",
"illuminate/cookie": "^5.5",
"illuminate/auth": "^5.5",
"graham-campbell/throttle": "^6.0",
"zircote/swagger-php": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9",
"nelmio/alice": "^2.1"
},
"autoload": {
"psr-4": {
"Uma\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Uma\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}