-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.27 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "rezsolt/symfony-api-platform-maker-bundle",
"description": "ApiPlatformMakerBundle for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Zsolt Restyanszki",
"email": "rezsolt@gmail.com"
}
],
"require": {
"php": "^7.1.3",
"symfony/framework-bundle": "^3.4|^4.3",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/maker-bundle": "^1.11",
"api-platform/core": "^2.4",
"doctrine/orm": "^2.6"
},
"autoload": {
"psr-4": {
"Rezsolt\\ApiPlatformMakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Rezsolt\\ApiPlatformMakerBundle\\": "spec/",
"tests\\Rezsolt\\ApiPlatformMakerBundle\\": "tests/",
"App\\": "tests/temp_src/"
}
},
"require-dev": {
"phpspec/phpspec": "^5.1",
"symfony/phpunit-bridge": "^4.3",
"symfony/routing": "^4.3",
"sensio/framework-extra-bundle": "^5.4",
"symfony/dependency-injection": "^4.3"
},
"scripts" : {
"post-install-cmd": [
"@test"
],
"phpunit": "vendor/bin/simple-phpunit",
"phpspec": "vendor/bin/phpspec",
"functional-test": "@phpunit",
"unit-test": "@phpspec run",
"test": [
"@unit-test",
"@functional-test"
]
},
"minimum-stability": "beta"
}