-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
131 lines (131 loc) · 4.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
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
{
"name": "tyannis/sds",
"description": "BTS SIO2 Project",
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"beberlei/assert": "^3.2",
"enqueue/sqs": "^0.10.1",
"friendsofsymfony/ckeditor-bundle": "^2.2",
"ramsey/uuid": "^4.0",
"ramsey/uuid-doctrine": "^1.6",
"sensio/framework-extra-bundle": "^5.6",
"sroze/messenger-enqueue-transport": "^0.5.0",
"symfony/asset": "5.0.*",
"symfony/console": "5.0.*",
"symfony/dotenv": "5.0.*",
"symfony/flex": "^1.3.1",
"symfony/form": "5.0.*",
"symfony/framework-bundle": "5.0.*",
"symfony/mailer": "5.0.*",
"symfony/messenger": "5.0.*",
"symfony/notifier": "5.1.*",
"symfony/orm-pack": "^1.0",
"symfony/security-bundle": "5.0.*",
"symfony/serializer-pack": "^1.0",
"symfony/twig-pack": "^1.0",
"symfony/validator": "5.0.*",
"symfony/webpack-encore-bundle": "^1.8",
"symfony/yaml": "5.0.*",
"twig/cssinliner-extra": "^3.1",
"twig/inky-extra": "^3.1",
"twig/string-extra": "^3.1"
},
"require-dev": {
"dama/doctrine-test-bundle": "6.3.*",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"fzaninotto/faker": "^1.9",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*",
"symfony/maker-bundle": "^1.15",
"symfony/panther": "^0.7.1",
"symfony/profiler-pack": "^1.0",
"symfony/test-pack": "^1.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"TYannis\\SDS\\Domain\\": "domain/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"TYannis\\SDS\\Domain\\Tests\\": "domain/tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"demo": [
"symfony serve -d",
"php bin/console messenger:consume -vv"
],
"mailer": [
"php bin/console messenger:consume -vv"
],
"clean-code": [
"phpcbf --standard=PSR12 tests src domain",
"phpcs --standard=PSR12 tests src domain"
],
"database": [
"@database-dev",
"@database-panther",
"@database-test"
],
"database-panther": [
"php bin/console doctrine:database:drop --if-exists --force --env=panther",
"php bin/console doctrine:database:create --env=panther",
"php bin/console doctrine:schema:update --force --env=panther",
"php bin/console doctrine:fixtures:load -n --env=panther"
],
"database-test": [
"php bin/console doctrine:database:drop --if-exists --force --env=test",
"php bin/console doctrine:database:create --env=test",
"php bin/console doctrine:schema:update --force --env=test",
"php bin/console doctrine:fixtures:load -n --env=test"
],
"database-dev": [
"php bin/console doctrine:database:drop --if-exists --force",
"php bin/console doctrine:database:create",
"php bin/console doctrine:schema:update --force",
"php bin/console doctrine:fixtures:load -n"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.0.*"
}
}
}