-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.26 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "wizards/rest-api",
"description": "A set of services to help you create beautiful REST APIs",
"license": "MIT",
"authors": [
{
"name": "Romain Richard",
"email": "bigzounet@hotmail.com"
}
],
"require": {
"php": ">=7.3",
"psr/http-message": "^1.0",
"league/fractal": "^0.19.2",
"symfony/options-resolver": "^4.1|^5.0"
},
"require-dev": {
"pagerfanta/pagerfanta": "^2.0",
"doctrine/annotations": "^1.7",
"doctrine/orm": "^2.6",
"doctrine/common": "^2.9",
"symfony/routing": "^4.1|^5.0",
"phpmd/phpmd": "^2.6",
"illuminate/contracts": "^5.6",
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.10.3",
"symfony/psr-http-message-bridge": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"symfony/phpunit-bridge": "^4.2",
"symfony/var-dumper": "^4.2",
"nyholm/psr7": "^1.1"
},
"suggest": {
"pagerfanta/pagerfanta": "^2.0",
"doctrine/orm": "^2.6",
"doctrine/common": "^2.9",
"symfony/routing": "^4.1"
},
"autoload": {
"psr-0": { "WizardsRest": "src/" }
},
"autoload-dev": {
"psr-0": {
"WizardsTest": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}