forked from n7consulting/Incipio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 3.22 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
{
"name": "n7consulting/jeyser-crm",
"description": "ERP / CRM for Junior-Entreprises",
"license": "AGPL-3.0-only",
"type": "project",
"autoload": {
"psr-4": {
"": "src/",
"Incipio\\": "app/",
"Tests\\": "tests/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": ">=7.1",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"doctrine/doctrine-migrations-bundle": "^1.0",
"doctrine/orm": "^2.5",
"egulias/email-validator": "~1.2",
"friendsofsymfony/comment-bundle": "~2.0",
"friendsofsymfony/jsrouting-bundle": "~1.1",
"friendsofsymfony/user-bundle": "^2.0",
"gedmo/doctrine-extensions": "~2.3",
"incenteev/composer-parameter-handler": "~2.0",
"javiereguiluz/easyadmin-bundle": "^1.9",
"ob/highcharts-bundle": "~1.2",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0",
"stoakes/form-bundle": "^3.0@dev",
"stof/doctrine-extensions-bundle": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/monolog-bundle": "~3.1",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/symfony": "3.4.*",
"twig/extensions": "~1.0",
"webmozart/json": "^1.2",
"webmozart/key-value-store": "^1.0"
},
"require-dev": {
"behat/behat": "^3.1",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "^1.3.1",
"behat/mink-extension": "^2.2",
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^2.6",
"phpunit/phpunit": "^5.0",
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"test": "composer test:db",
"test:behat": "./vendor/bin/behat ./features/ -f pretty",
"test:db": "php bin/console doctrine:schema:validate --ansi",
"install:first": [
"php bin/console doctrine:schema:create -n --env=prod --ansi",
"php bin/console doctrine:fixtures:load -n --env=prod --ansi"
],
"clear-cache-prod": [
"php bin/console cache:clear -e=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:schema:drop --force",
"php bin/console doctrine:schema:update --force",
"php bin/console doctrine:fixtures:load -n"
],
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}