-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.85 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
{
"name": "smartbooster/core-bundle",
"type": "symfony-bundle",
"description": "Bundle grouping all vendor, generic utils and services that we use on each project",
"keywords": ["symfony", "bundle", "utils", "core"],
"license": "MIT",
"authors": [
{
"name": "Mathieu Ducrot",
"email": "[email protected]",
"homepage": "https://www.smartbooster.io"
}
],
"require": {
"php": "^8.1",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"doctrine/orm": "^2.13",
"egulias/email-validator": "^3.0|^4.0",
"nelmio/security-bundle": "^2.8 || ^3.0",
"sentry/sentry-symfony": "^4.9",
"symfony/apache-pack": "^1.0",
"symfony/form": "^5.4|^6.2",
"symfony/framework-bundle": "^5.4|^6.2",
"symfony/security-bundle": "^5.4|^6.2",
"symfony/translation": "^5.4|^6.2",
"theofidry/alice-data-fixtures": "^1.5"
},
"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"
},
"autoload": {
"psr-4": {
"Smart\\CoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smart\\CoreBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true
},
"sort-packages": true,
"optimize-autoloader": true,
"prepend-autoloader": false
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"symfony": {
"allow-contrib": false,
"endpoint": [
"https://api.github.com/repos/smartbooster/standard-bundle/contents/recipes.json"
]
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}