This repository has been archived by the owner on Dec 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
53 lines (53 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "retfu/rrest",
"type": "library",
"description": "RREST helps to build good REST API in PHP.",
"keywords": ["api", "REST", "RAML", "Swagger", "API Blueprint", "Open API Initiative"],
"homepage": "https://github.com/RETFU/RREST",
"license": "MIT",
"authors": [{
"name": "Fabien Furet",
"homepage": "http://fabienfuret.net"
}],
"autoload": {
"psr-4": {
"RREST\\": "src/"
}
},
"require": {
"php": ">=7.0",
"symfony/http-kernel": "^4.0",
"symfony/serializer": "^4.0",
"symfony/property-access": "^4.0",
"symfony/yaml": "^4.0",
"raml-org/raml-php-parser": "^4.6",
"jrfnl/php-cast-to-type": "^2.0",
"willdurand/negotiation": "^2.0",
"ralouphie/getallheaders": "^2.0",
"league/json-guard": "^1.0",
"league/json-reference": "^1.0",
"ext-libxml": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*"
},
"suggest": {
"silex/silex": "To use the Silex Router"
},
"require-dev": {
"atoum/atoum": "^3.0",
"atoum/stubs": "*",
"silex/silex": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0",
"squizlabs/php_codesniffer": "^2.0",
"atoum/reports-extension": "^3.0"
},
"scripts": {
"post-install-cmd": [
"test -d .git && cp contrib/pre-commit .git/hooks/pre-commit",
"test -d .git && chmod +x .git/hooks/pre-commit"
],
"cs": "php-cs-fixer fix --config=.php_cs",
"test": "atoum"
}
}