-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·68 lines (68 loc) · 2.21 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
61
62
63
64
65
66
67
68
{
"name": "freshheads/multi-site-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "A Symfony bundle that provides site configuration and routing strategies for applications with multiple (sub)sites",
"keywords": [
"site",
"multi site",
"subsite",
"routing"
],
"homepage": "https://github.com/freshheads/FHMultiSiteBundle",
"authors": [
{
"name": "Bart van Amelsvoort",
"email": "[email protected]"
},
{
"name": "Kevin Schuurmans",
"email": "[email protected]"
},
{
"name": "Joris van de Sande",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"symfony/config": "^6.4 | ^7.0",
"symfony/dependency-injection": "^6.4 | ^7.0",
"symfony/event-dispatcher": "^6.4 | ^7.0",
"symfony/http-kernel": "^6.4 | ^7.0",
"symfony/routing": "^6.4 | ^7.0",
"symfony/yaml": "^6.4 | ^7.0"
},
"require-dev": {
"php-cs-fixer/shim": "3.57.2",
"phpstan/phpstan": "1.11.1",
"phpstan/phpstan-deprecation-rules": "1.2.0",
"phpstan/phpstan-symfony": "1.4.0",
"phpunit/phpunit": "^11.1",
"symfony/doctrine-bridge": "^6.4 | ^7.0",
"symfony/form": "^6.4 | ^7.0",
"twig/twig": "^2.10 | ^3.0"
},
"suggest": {
"symfony/form": "required when using one of the form types",
"twig/twig": "required when using the twig functions",
"symfony/doctrine-bridge": "required when using the IdentifiedSiteType form type"
},
"autoload": {
"psr-4": { "FH\\Bundle\\MultiSiteBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "./vendor/bin/phpunit --colors=always --testdox",
"php-cs-fixer-dry-run": "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run",
"php-cs-fixer-fix": "vendor/bin/php-cs-fixer fix --ansi --verbose --diff"
}
}