-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
75 lines (75 loc) · 2.07 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
{
"name": "smartbooster/sonata-bundle",
"type": "symfony-bundle",
"description": "SMART BOOSTER Sonata setup",
"keywords": [],
"homepage": "https://github.com/smartbooster/sonata-bundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas Bastien",
"email": "[email protected]",
"homepage": "https://www.smartbooster.io"
}
],
"require": {
"php": "^8.1",
"sonata-project/doctrine-orm-admin-bundle": "^4.2",
"sonata-project/intl-bundle": "^2.12 || ^3.0",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"symfony/webpack-encore-bundle": "^1.15 || ^2.0",
"theofidry/alice-data-fixtures": "^1.5",
"symfony/mailer": "^5.4 || ^6.4",
"symfony/property-info": "^5.4 || ^6.4",
"symfony/security-http": "^5.4 || ^6.4",
"symfony/security-core": "^5.4 || ^6.4",
"nelmio/security-bundle": "^2.8 || ^3.0",
"yokai/security-token-bundle": "^3.3",
"sentry/sentry-symfony": "^4.1",
"symfony/expression-language": "^4.4 || ^5.4 || ^6.0",
"smartbooster/core-bundle": "^1.9.0",
"vich/uploader-bundle": "^1.19 || ^2.3",
"yokai/enum-bundle": "^4.1"
},
"require-dev": {
"smartbooster/standard-bundle": "^1.0",
"symfony/flex": "^2",
"symfony/phpunit-bridge": "^5.4|^6.2",
"symfony/runtime": "^5.4|^6.2",
"symfony/twig-bundle": "^5.4|^6.2",
"symfony/browser-kit": "^5.4|^6.2"
},
"autoload": {
"psr-4": {
"Smart\\SonataBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smart\\SonataBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
},
"symfony": {
"endpoint": ["https://api.github.com/repos/smartbooster/standard-bundle/contents/recipes.json"]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"prepend-autoloader": false
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}