forked from raml-org/raml-php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (31 loc) · 702 Bytes
/
composer.json
File metadata and controls
35 lines (31 loc) · 702 Bytes
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
{
"name": "alecsammon/php-raml-parser",
"type": "library",
"description": "A RAML parser built in php",
"homepage": "https://github.com/alecsammon/php-raml-parser",
"license": "MIT",
"authors": [
{
"name": "Alec Sammon",
"email": "alec.sammon@googlemail.com"
}
],
"autoload": {
"psr-4": {
"Raml\\": "src/"
}
},
"require-dev": {
"satooshi/php-coveralls": "~0.6",
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "@dev"
},
"require": {
"php": ">=5.5.9",
"justinrainbow/json-schema": "~1.5",
"symfony/yaml": "~3.0",
"symfony/routing": "~3.0",
"oodle/inflect": "~0.2",
"psr/http-message": "^1.0"
}
}