generated from itk-dev/itk-base-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
142 lines (142 loc) · 4.89 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
141
142
{
"name": "itkdev/aapodwalk-api",
"description": "Aapodwalk api for creating podwalks",
"license": "proprietary",
"type": "project",
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"api-platform/core": "^3.1",
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.15",
"easycorp/easyadmin-bundle": "^4.6",
"fakerphp/faker": "^1.23",
"itk-dev/metrics-bundle": "^1.0",
"mobiledetect/mobiledetectlib": "^4.8",
"nelmio/cors-bundle": "^2.3",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.22",
"psalm/plugin-symfony": "^5.0",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/asset": "~7.2.0",
"symfony/asset-mapper": "~7.2.0",
"symfony/console": "~7.2.0",
"symfony/dotenv": "~7.2.0",
"symfony/expression-language": "~7.2.0",
"symfony/flex": "^2",
"symfony/framework-bundle": "~7.2.0",
"symfony/http-client": "~7.2.0",
"symfony/mailer": "~7.2.0",
"symfony/mime": "~7.2.0",
"symfony/monolog-bundle": "^3.8",
"symfony/property-access": "~7.2.0",
"symfony/property-info": "~7.2.0",
"symfony/runtime": "~7.2.0",
"symfony/security-bundle": "~7.2.0",
"symfony/serializer": "~7.2.0",
"symfony/translation": "~7.2.0",
"symfony/twig-bundle": "~7.2.0",
"symfony/validator": "~7.2.0",
"symfony/yaml": "~7.2.0",
"symfonycasts/reset-password-bundle": "^1.23",
"twig/extra-bundle": "^2.12 || ^3.0",
"twig/twig": "^2.12 || ^3.0",
"vich/uploader-bundle": "^2.1"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"ergebnis/composer-normalize": "^2.45",
"friendsofphp/php-cs-fixer": "^3.20",
"hautelook/alice-bundle": "^2.12",
"kocal/biome-js-bundle": "^1.3",
"symfony/debug-bundle": "~7.2.0",
"symfony/maker-bundle": "*",
"symfony/stopwatch": "~7.2.0",
"symfony/web-profiler-bundle": "~7.2.0",
"vincentlanglet/twig-cs-fixer": "^3.3",
"weirdan/doctrine-psalm-plugin": "^2.8"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.2.*"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"code-analysis": [
"psalm"
],
"coding-standards-apply": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix",
"twig-cs-fixer lint templates --fix"
],
"coding-standards-check": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run",
"twig-cs-fixer lint templates"
],
"fixtures-load": [
"bin/console hautelook:fixtures:load --no-interaction"
],
"psalm": [
"./vendor/bin/psalm --no-cache"
],
"update-api-spec": [
"bin/console api:openapi:export --output=public/api-spec-v1.yaml --yaml --no-interaction",
"bin/console api:openapi:export --output=public/api-spec-v1.json --no-interaction"
],
"update-translations": [
"# We need a translation from en to en (!) (without prefix) to be able to process placeholders in en.",
"DEFAULT_LOCALE=en bin/console translation:extract --clean --force en --prefix=''",
"DEFAULT_LOCALE=en bin/console translation:extract --clean --force da",
"# Mark default translations (prefixed with `__`) as “Needs work” in Danish translations",
"sed --in-place='' 's/<target>__/<target state=\"needs-l10n\">__/' translations/*.da.*xlf"
]
}
}