-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·138 lines (138 loc) · 4.2 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
{
"name": "iomedia/client",
"type": "project",
"license": "proprietary",
"description": "Client ALLINONE",
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"iomedia/aio-cms-bundle": "dev-seb/upgrade-yarn-deps as 1.10.x-dev",
"symfony/console": "^5.4",
"symfony/dotenv": "^5.4",
"symfony/flex": "^2.2",
"symfony/framework-bundle": "^5.4",
"symfony/yaml": "^5.4",
"jms/translation-bundle": "^1.5",
"symfony/mailer": "^5.4",
"symfony/amazon-mailer": "^5.4",
"symfony/monolog-bundle": "^3.8",
"symfony/stopwatch": "^5.4",
"symfony/runtime": "^5.4",
"symfony/rate-limiter": "^5.4",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/stimulus-bundle": "^2.10",
"symfony/ux-turbo": "^2.10"
},
"require-dev": {
"symfony/apache-pack": "^1.0",
"symfony/maker-bundle": "^1.0",
"symfony/debug-bundle": "^5.4",
"symfony/web-profiler-bundle": "^5.4",
"iomedia/aio-test-bundle": "^1.1"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:iomediacommunication/aio-cms-bundle.git"
},
{
"type": "vcs",
"url": "git@github.com:iomediacommunication/test-bundle.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "8.1"
},
"sort-packages": false,
"allow-plugins": {
"symfony/flex": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"Shared\\": "src/",
"Back\\": "apps/back/src/",
"Front\\": "apps/front/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"Aio\\CmsBundle\\Tests\\": "vendor/iomedia/aio-cms-bundle/tests"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"fos:js-routing:dump --format=json --target=var/fos_js_routes.json": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"complete-check": [
"@composer-validate",
"@lint-yaml",
"cs-dry",
"@db-schema-validate",
"@phpstan",
"@tests"
],
"lint-yaml": "bin/console lint:yaml --parse-tags config",
"composer-validate": "composer validate --no-check-lock",
"db-schema-validate": "bin/console doctrine:schema:validate --env=prod --skip-sync",
"dev-init": "bin/console iomedia:database-dev:create --env=dev",
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon",
"cs-dry": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"tests-init": "bin/console iomedia:database-test:create --env=test --no-interaction",
"phpunit": "vendor/bin/phpunit --verbose",
"tests": [
"Composer\\Config::disableProcessTimeout",
"@tests-init",
"@phpunit"
],
"complete-checks": [
"@composer-validate",
"@db-schema-validate",
"@lint-yaml",
"@cs-dry",
"@phpstan",
"@tests"
],
"yarn-webpack": [
"Composer\\Config::disableProcessTimeout",
"yarn install && yarn encore dev"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^5.4",
"endpoint": [
"https://api.github.com/repos/iomediacommunication/aio-cms-recipes/contents/index.json",
"flex://defaults"
]
}
}
}