forked from in6pio/Incipio
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
110 lines (110 loc) · 3.48 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
{
"name": "n7consulting/jeyser-crm",
"description": "ERP / CRM for Junior-Entreprises",
"license": "AGPL-3.0-only",
"type": "project",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^1.6.10",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"doctrine/doctrine-migrations-bundle": "^2.1",
"easycorp/easyadmin-bundle": "^2.0",
"friendsofsymfony/user-bundle": "^2.0",
"ob/highcharts-bundle": "~1.2",
"phpdocumentor/reflection-docblock": "^3.0|^4.0",
"sensio/framework-extra-bundle": "^3.0",
"stoakes/form-bundle": "dev-master#f23a3ce3ab185464045924a5cc1dc9b746a0a34a",
"symfony/console": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/expression-language": "4.4.*",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "4.4.*",
"symfony/monolog-bundle": "^3.3",
"symfony/property-access": "4.4.*",
"symfony/property-info": "4.4.*",
"symfony/serializer": "4.4.*",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/twig-bundle": "4.4.*",
"symfony/yaml": "4.4.*",
"tattali/calendar-bundle": "^1.2",
"twig/extra-bundle": "^3.3",
"twig/intl-extra": "^3.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"install:first": [
"php bin/console doctrine:migration:migrate -n -v --ansi",
"php bin/console doctrine:fixtures:load -n --ansi"
],
"clear-cache-prod": [
"php bin/console cache:clear --env=prod --no-warmup",
"php bin/console cache:warmup --env=prod",
"php bin/console doctrine:cache:clear-query",
"php bin/console doctrine:cache:clear-metadata"
],
"mysql-reload": [
"php bin/console doctrine:database:drop --force",
"php bin/console doctrine:database:create",
"@install:first"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.4.*"
}
},
"require-dev": {
"behat/mink": "dev-master#d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^3.2",
"symfony/debug-bundle": "4.4.*",
"symfony/stopwatch": "4.4.*",
"symfony/web-profiler-bundle": "4.4.*"
}
}