-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
133 lines (125 loc) · 3.98 KB
/
Copy pathcomposer.json
File metadata and controls
133 lines (125 loc) · 3.98 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
{
"name": "thelia/core",
"type": "thelia-core",
"description": "Core of Thelia",
"license": "GPL-3.0-or-later",
"homepage": "http://thelia.net/",
"support": {
"forum": "http://thelia.net/forum",
"wiki": "http://doc.thelia.net"
},
"require": {
"php": ">=8.3 <9.0",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
"composer/composer": "^2.9",
"composer/installers": "^1.0 || ^2.0",
"api-platform/symfony": "^4.3",
"lexik/jwt-authentication-bundle": "^3.0",
"nelmio/cors-bundle": "^2.2",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.30",
"psr/log": "^3.0",
"ptachoire/cssembed": "1.0.*",
"simplepie/simplepie": "1.5.*",
"dompdf/dompdf": "^3.1",
"imagine/imagine": "^1.3.2",
"michelf/php-markdown": "1.9.*",
"commerceguys/addressing": "1.1.*",
"symfony/asset": "7.4.*",
"symfony/cache": "7.4.*",
"symfony/config": "7.4.*",
"symfony/console": "7.4.*",
"symfony/dependency-injection": "7.4.*",
"symfony/dom-crawler": "7.4.*",
"symfony/dotenv": "7.4.*",
"symfony/event-dispatcher": "7.4.*",
"symfony/expression-language": "7.4.*",
"symfony/filesystem": "7.4.*",
"symfony/finder": "7.4.*",
"symfony/flex": "^2.4",
"symfony/form": "7.4.*",
"symfony/framework-bundle": "7.4.*",
"symfony/http-foundation": "7.4.*",
"symfony/http-kernel": "7.4.*",
"symfony/lock": "7.4.*",
"symfony/mailer": "7.4.*",
"symfony/mime": "7.4.*",
"symfony/monolog-bundle": "3.*",
"symfony/options-resolver": "7.4.*",
"symfony/process": "7.4.*",
"symfony/property-access": "7.4.*",
"symfony/property-info": "7.4.*",
"symfony/psr-http-message-bridge": "^7.4",
"symfony/rate-limiter": "7.4.*",
"symfony/routing": "7.4.*",
"symfony/runtime": "7.4.*",
"symfony/security-bundle": "7.4.*",
"symfony/security-core": "7.4.*",
"symfony/security-csrf": "7.4.*",
"symfony/security-http": "7.4.*",
"symfony/serializer": "7.4.*",
"symfony/stopwatch": "7.4.*",
"symfony/translation": "7.4.*",
"symfony/validator": "7.4.*",
"symfony/web-profiler-bundle": "7.4.*",
"symfony/yaml": "7.4.*",
"symfony-cmf/routing": "3.0.*",
"thelia/config": "^3.0.0-beta1",
"thelia/setup": "^3.0.0-beta1",
"thelia/currency-converter": "~1.0",
"thelia/propel": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"symfony/browser-kit": "7.4.*",
"symfony/phpunit-bridge": "7.4.*",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.1",
"symfony/css-selector": "7.4.*",
"friendsofphp/php-cs-fixer": "^3.41",
"symfony/debug-bundle": "7.4.*",
"thelia/web-profiler-module": "^3.0"
},
"extra": {
"branch-alias": {
"dev-main": "3.0.x-dev"
},
"symfony": {
"allow-contrib": true,
"require": "7.4.*",
"endpoint": [
"https://api.github.com/repos/thelia/thelia-recipes/contents/index.json?ref=main",
"flex://defaults"
]
}
},
"bin": [
"Thelia"
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Thelia\\": "lib/Thelia/"
},
"files": [
"bootstrap.php"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"thelia/installer": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}