-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "swp/settings-bundle",
"type": "symfony-bundle",
"description": "Scope and owner aware settings system. Define settings in configuration, keep customized values in storage.",
"keywords": ["settings bundle", "settings", "bundle", "publisher", "superdesk"],
"license":"AGPL-3.0",
"minimum-stability": "dev",
"authors": [
{
"name": "Paweł Mikołajczuk",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "path",
"url": "../../*/*",
"canonical": false
}
],
"require": {
"php": "^7.4",
"swp/storage-bundle": "^2.0",
"swp/common": "^2.0",
"symfony/form": "^4.2 | ^5.0",
"symfony/validator": "^4.2 | ^5.0",
"symfony/security-core": "^4.4 | ^5.0",
"sensio/framework-extra-bundle": "^5.0",
"doctrine/orm": "^2.6",
"doctrine/doctrine-bundle": "^1.10 | ^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^5.6",
"phpdocumentor/reflection-docblock": "^4.0",
"symfony/framework-bundle": "^4.2 | ^5.0",
"symfony/debug": "^4.2@stable",
"symfony/http-foundation": "^4.2 | ^5.0",
"symfony/security-bundle": "^4.2 | ^5.0",
"symfony/property-access": "^4.2 | ^5.0",
"symfony/monolog-bundle": "^3.4",
"symfony/monolog-bridge": "^4.2 | ^5.0",
"symfony/serializer": "^4.2 | ^5.0",
"liip/functional-test-bundle": "^2.0",
"doctrine/doctrine-cache-bundle": "1.3.*"
},
"autoload": {
"psr-4": { "SWP\\Bundle\\SettingsBundle\\": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}