-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
137 lines (137 loc) · 4.21 KB
/
composer.json
File metadata and controls
137 lines (137 loc) · 4.21 KB
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
{
"type": "project",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"php-64bit": "^8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"aws/aws-sdk-php": "^3.371.1",
"doctrine/dbal": "^4.4.2",
"doctrine/doctrine-bundle": "^3.2.2",
"doctrine/doctrine-migrations-bundle": "^3.7.0",
"doctrine/orm": "^3.6.2",
"enterprise-tooling-for-symfony/coding-agent": "dev-main",
"enterprise-tooling-for-symfony/shared-bundle": "dev-main",
"enterprise-tooling-for-symfony/webui-bundle": "dev-main",
"googleads/google-ads-php": "^25.0",
"neuron-core/neuron-ai": "^2.13.0",
"orhanerday/open-ai": "^5.3",
"phpdocumentor/reflection-docblock": "^5.6.6",
"sensiolabs/minify-bundle": "^0.9.5",
"sensiolabs/typescript-bundle": "^0.2.2",
"symfony/asset": "7.4.*",
"symfony/asset-mapper": "7.4.*",
"symfony/console": "7.4.*",
"symfony/doctrine-messenger": "7.4.*",
"symfony/dotenv": "7.4.*",
"symfony/expression-language": "7.4.*",
"symfony/flex": "^2.10.0",
"symfony/form": "7.4.*",
"symfony/framework-bundle": "7.4.*",
"symfony/http-client": "7.4.*",
"symfony/intl": "7.4.*",
"symfony/lock": "7.4.*",
"symfony/mailer": "7.4.*",
"symfony/mime": "7.4.*",
"symfony/monolog-bundle": "^3.11.1",
"symfony/notifier": "7.4.*",
"symfony/process": "7.4.*",
"symfony/property-access": "7.4.*",
"symfony/property-info": "7.4.*",
"symfony/runtime": "7.4.*",
"symfony/security-bundle": "7.4.*",
"symfony/serializer": "7.4.*",
"symfony/stimulus-bundle": "^2.32.0",
"symfony/string": "7.4.*",
"symfony/translation": "7.4.*",
"symfony/twig-bundle": "7.4.*",
"symfony/uid": "7.4.*",
"symfony/ux-live-component": "^2.32.0",
"symfony/validator": "7.4.*",
"symfony/web-link": "7.4.*",
"symfony/yaml": "7.4.*",
"symfonycasts/tailwind-bundle": "^0.10.1",
"twig/extra-bundle": "^2.12|^3.23.0",
"twig/intl-extra": "^3.23.0",
"twig/twig": "^2.12|^3.23.0"
},
"require-dev": {
"pestphp/pest": "^4.4.1",
"phpunit/phpunit": "^12.5.12"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"bump-after-update": true,
"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": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.4.*"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dx-tooling/etfs-coding-agent.git"
},
{
"type": "vcs",
"url": "https://github.com/dx-tooling/etfs-shared-bundle.git"
},
{
"type": "vcs",
"url": "https://github.com/dx-tooling/etfs-webui-bundle.git"
},
{
"type": "vcs",
"url": "https://github.com/dx-tooling/etfs-v4a-fileedit.git"
}
]
}