forked from Sylius/SyliusSettingsBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.88 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
59
60
{
"name": "chamilo/settings-bundle",
"type": "symfony-bundle",
"description": "Settings system for Symfony applications, editable via web user interface.",
"keywords": ["config", "configuration", "settings", "shop", "webshop", "ecommerce"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/orm": "~2.5|^3.0",
"doctrine/doctrine-bundle": "^1.0|^2.0",
"symfony/config": "^4.0|^5.0|^6.0",
"symfony/twig-bridge": "^4.0|^5.0|^6.0",
"symfony/event-dispatcher": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"symfony/form": "^4.0|^5.0|^6.0",
"symfony/framework-bundle": "^4.0|^5.0|^6.0",
"symfony/options-resolver": "^4.0|^5.0|^6.0",
"symfony/validator": "^4.0|^5.0|^6.0",
"symfony/yaml": "^4.0|^5.0|^6.0"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"symplify/easy-coding-standard": "^9.0",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": { "Sylius\\Bundle\\SettingsBundle\\": "src/Bundle/" }
},
"autoload-dev": {
"psr-4": { "Sylius\\Bundle\\SettingsBundle\\spec\\": "spec/" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": [
"@php vendor/bin/ecs check src",
"@php vendor/bin/phpstan analyse"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}