-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.73 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.73 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
{
"name": "peterdevpl/decarte",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"Decarte\\Shop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Decarte\\Shop\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.11",
"google/apiclient": "^2.2",
"liip/imagine-bundle": "^2.7",
"moneyphp/money": "^3.3",
"openpayu/openpayu": "^2.2",
"sensio/framework-extra-bundle": "^6.2",
"sentry/sentry-symfony": "^4.2",
"spatie/schema-org": "^3.9",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/asset": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.0",
"symfony/form": "5.4.*",
"symfony/mailer": "5.4.*",
"symfony/monolog-bundle": "^3.1",
"symfony/security-bundle": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/validator": "5.4.*",
"symfony/webpack-encore-bundle": "^1.12",
"symfony/yaml": "5.4.*",
"vich/uploader-bundle": "^1.19"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.1",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"friends-of-behat/mink-extension": "^2.5",
"friends-of-behat/symfony-extension": "^2.2",
"friendsofphp/php-cs-fixer": "^2.12",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.6",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "5.4.*",
"symfony/stopwatch": "5.4.*",
"symfony/web-profiler-bundle": "5.4.*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
},
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public_html",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"branch-alias": null
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"php-http/discovery": true
},
"optimize-autoloader": true,
"sort-packages": true
}
}