-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 972 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
37
38
39
40
41
42
{
"name": "swp/fixtures-bundle",
"type": "symfony-bundle",
"description": "Provides useful features around Doctrine Fixtures for Web Publisher project.",
"keywords": ["fixtures", "superdesk", "webpublisher"],
"license":"AGPL-3.0",
"minimum-stability": "dev",
"authors": [
{
"name": "Rafał Muszyński",
"email": "[email protected]"
},
{
"name": "Paweł Mikołajczuk",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"symfony/dependency-injection": "^4.2",
"doctrine/common": "2.6.*",
"nelmio/alice": "2.2.*",
"liip/functional-test-bundle": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"exclude-from-classmap": [
"spec/"
],
"psr-4": { "SWP\\Bundle\\FixturesBundle\\": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}