-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
140 lines (140 loc) · 4.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "mep-agency/symfony-web-toolkit-skeleton",
"type": "project",
"license": "MIT",
"description": "A skeleton to start a new Symfony app",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/flex": "^1.17|^2"
},
"flex-require": {
"mep-agency/web-toolkit-bundle": "^0.1",
"sensio/framework-extra-bundle": "^6.1",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/http-client": "*",
"symfony/intl": "*",
"symfony/mailer": "*",
"symfony/mime": "*",
"symfony/monolog-bundle": "^3.1",
"symfony/notifier": "*",
"symfony/orm-pack": "*",
"symfony/process": "*",
"symfony/runtime": "*",
"symfony/security-bundle": "*",
"symfony/serializer-pack": "*",
"symfony/string": "*",
"symfony/translation": "*",
"symfony/twig-pack": "*",
"symfony/validator": "*",
"symfony/web-link": "*",
"symfony/webpack-encore-bundle": "^1.12",
"symfony/yaml": "*"
},
"require-dev": {
},
"flex-require-dev": {
"doctrine/doctrine-fixtures-bundle": "*",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.6.8",
"rector/rector": "^0.12.8",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*",
"symplify/easy-coding-standard": "^10.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"check": [
"@rector",
"@ecs",
"@phpstan"
],
"full-check": [
"@check",
"yarn lint",
"@test"
],
"ecs": "php vendor/bin/ecs check",
"ecs-fix": "php vendor/bin/ecs check --fix",
"rector": "php vendor/bin/rector process --dry-run",
"rector-fix": "php vendor/bin/rector process",
"phpstan": "php vendor/bin/phpstan analyse",
"test": [
"php bin/console cache:clear --env test",
"php bin/console doctrine:database:drop --force --env test",
"php bin/console doctrine:schema:create --env test",
"php bin/console mwt:sessions:create-table --ignore-missing-pdo-session-handler -n --env test",
"php bin/console doctrine:fixtures:load -n --env test",
"php bin/phpunit"
],
"reset-db": [
"php bin/console doctrine:database:drop --force",
"php bin/console doctrine:schema:create",
"php bin/console mwt:sessions:create-table --ignore-missing-pdo-session-handler -n",
"php bin/console doctrine:fixtures:load -n"
],
"auto-scripts": [
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-create-project-cmd": [
"php ./init.php"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:mep-agency/web-toolkit-bundle.git"
}
]
}