-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
104 lines (104 loc) · 3.29 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
{
"name": "thelia/core",
"description": "Core of Thelia",
"license": "LGPL-3.0+",
"homepage": "http://thelia.net/",
"support": {
"forum": "http://thelia.net/forum",
"wiki": "http://doc.thelia.net"
},
"require": {
"php": ">= 8.1",
"ext-pdo": "*",
"ext-json": "*",
"ext-intl": "*",
"ext-curl": "*",
"psr/log": "1.1.*",
"symfony/config": "6.4.*",
"symfony/console": "6.4.*",
"symfony/dependency-injection": "6.4.*",
"symfony/event-dispatcher": "6.4.*",
"symfony/http-kernel": "6.4.*",
"symfony/routing": "6.4.*",
"symfony/filesystem": "6.4.*",
"symfony/yaml": "6.4.*",
"symfony/translation": "6.4.*",
"symfony-cmf/routing": "3.0.*",
"symfony/validator": "6.4.*",
"symfony/options-resolver": "6.4.*",
"symfony/security-core": "6.4.*",
"symfony/security-http": "6.4.*",
"symfony/security-csrf": "6.4.*",
"symfony/expression-language": "6.4.*",
"symfony/process": "6.4.*",
"symfony/dom-crawler": "6.4.*",
"symfony/property-access": "6.4.*",
"symfony/serializer": "6.4.*",
"symfony/finder": "6.4.*",
"symfony/http-foundation": "6.4.*",
"symfony/form": "6.4.*",
"symfony/dotenv": "6.4.*",
"symfony/stopwatch": "6.4.*",
"symfony/twig-bundle": "6.4.*",
"symfony/web-profiler-bundle": "6.4.*",
"thelia/currency-converter": "~1.0",
"ptachoire/cssembed": "1.0.*",
"simplepie/simplepie": "1.5.*",
"imagine/imagine": "1.2.4",
"michelf/php-markdown": "1.9.*",
"smarty/smarty": "~4.5.0",
"commerceguys/addressing": "1.1.*",
"symfony/cache": "6.4.*",
"symfony/polyfill-php73": "^1.0",
"symfony/lock": "6.4.*",
"thelia/propel": "dev-thelia-2.5",
"symfony/mime": "6.4.*",
"symfony/framework-bundle": "6.4.*",
"wikimedia/less.php": "^3.1",
"symfony/psr-http-message-bridge": "^2.1",
"symfony/flex": "^2.4",
"assetic/framework": "~3.0.0",
"spipu/html2pdf": "~5.2.5",
"symfony/mailer": "6.4.*",
"symfony/webpack-encore-bundle": "^1.14",
"composer/composer": "~2.7.0",
"doctrine/annotations": "^2.0"
},
"require-dev": {
"thelia/hooktest-module": "~1.1",
"thelia/hooktest-template": "~1.1",
"phpunit/phpunit": "9.5.*",
"symfony/browser-kit": "6.4.*",
"symfony/phpunit-bridge": "6.4.*",
"phpstan/phpstan": "1.8.2",
"phpstan/extension-installer": "1.1.0",
"symfony/css-selector": "6.4.*",
"friendsofphp/php-cs-fixer": "3.41.*",
"symfony/debug-bundle": "6.4.*"
},
"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
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}