-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "qpautrat/woohoolabs-yin-bundle",
"description": "Implements woohoolabs/yin framework into Symfony",
"keywords": ["json-api", "symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Quentin Pautrat",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.0",
"psr/http-factory": "^1.0",
"sensio/framework-extra-bundle": "^5.4",
"symfony/psr-http-message-bridge": "^1.2",
"woohoolabs/yin": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nyholm/psr7": "^1.2",
"phpspec/phpspec": "^4.3"
},
"autoload": {
"psr-4": {
"QP\\WoohoolabsYinBundle\\": "src/"
}
},
"scripts": {
"phpspec": "vendor/bin/phpspec run -n -f dot",
"test": [
"@phpspec"
]
}
}