-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 1.02 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
{
"name": "happyr/api-bundle",
"type": "symfony-bundle",
"description": "Api stuff for most Happyr projects",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"psr/cache": "^1.0",
"symfony/security-bundle": "^3.3 || ^4.0",
"symfony/http-foundation": "^3.3 || ^4.0",
"symfony/framework-bundle": "^3.3 || ^4.0",
"league/fractal": "^0.16.0",
"symfony/validator": "^3.3 || ^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0.4",
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"nyholm/symfony-bundle-test": "^1.3.1",
"cache/void-adapter": "^1.0"
},
"autoload": {
"psr-4": { "Happyr\\ApiBundle\\": "" }
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}