This repository was archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (51 loc) · 1.39 KB
/
composer.json
File metadata and controls
65 lines (51 loc) · 1.39 KB
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
58
59
60
61
62
63
64
65
{
"name": "kdubuc/api",
"description": "API",
"keywords": ["api"],
"homepage": "https://github.com/kdubuc/api",
"license": "CECILL-2.1",
"authors": [
{
"role": "Developer",
"name": "Kevin DUBUC",
"email": "kevindubuc62@gmail.com",
"homepage": "http://kevindubuc.fr"
}
],
"require": {
"php": "^7.1",
"container-interop/container-interop": "^1.1",
"doctrine/collections": "^1.4",
"league/event": "^2.1",
"league/fractal": "^0.16",
"league/tactician": "^1.0",
"psr/cache": "^1.0",
"ramsey/uuid": "^3.4",
"slim/slim": "^3.3",
"pagerfanta/pagerfanta": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^6.2",
"mongodb/mongodb": "^1.7",
"doctrine/dbal": "^2.5"
},
"suggest": {
"mongodb/mongodb": "Needed to support MongoDB storages",
"doctrine/dbal": "Needed to support DB storages"
},
"autoload": {
"psr-4": { "API\\": "src/" }
},
"autoload-dev": {
"psr-4": { "API\\Test\\": "tests/" }
},
"scripts": {
"code:test": "phpunit",
"code:fix-cs": "php-cs-fixer fix --config=php-cs-fixer.php"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}