This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
forked from flef/Incipio
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
112 lines (112 loc) · 5.34 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
{
"name": "in6pio/incipio",
"description": "ERP for Junior-Entreprises.",
"license": "AGPL-3.0",
"type": "project",
"autoload": {
"psr-4": {
"": "src/",
"Incipio\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/",
"Behat\\": "features/bootstrap"
}
},
"require": {
"php": ">=5.5.0",
"symfony/symfony": "~2.7",
"doctrine/dbal": "~2.5",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "~2.5",
"dunglas/api-bundle": "~1.0",
"csa/guzzle-bundle": "~2.0@dev",
"friendsofsymfony/http-cache-bundle": "~1.0",
"friendsofsymfony/user-bundle": "~2.0@dev",
"incenteev/composer-parameter-handler": "~2.0",
"knplabs/knp-menu-bundle": "~2",
"lexik/jwt-authentication-bundle": "~1.0",
"nelmio/api-doc-bundle": "~2.9",
"nelmio/cors-bundle": "~1.4",
"sensio/distribution-bundle": "~3.0,>=3.0.12",
"sensio/framework-extra-bundle": "~3.0,>=3.0.2",
"stof/doctrine-extensions-bundle": "~1.1",
"symfony/monolog-bundle": "~2.4",
"symfony/swiftmailer-bundle": "~2.3",
"theofidry/loopback-api-bundle": "~0.3",
"twig/extensions": "~1.0"
},
"require-dev": {
"behat/behat": "~3.0",
"behat/mink": "~1.5",
"behat/mink-browserkit-driver": "~1.1",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.1",
"behat/symfony2-extension": "~2.0",
"behatch/contexts": "dev-master#eef7ab39ca896796bf3ba25a0fa5a95f15276eb7",
"bit3/faker-cli": "~1.3",
"doctrine/data-fixtures": "^1.1",
"hautelook/alice-bundle": "~1.0",
"phpunit/phpunit": "^5.0",
"sllh/php-cs-fixer-styleci-bridge": "^1.3",
"symfony/phpunit-bridge": "~2.7",
"theofidry/alice-bundle-extension": "~1.0"
},
"scripts": {
"style:check": "php bin/php-cs-fixer fix -n --dry-run --diff -v --ansi src && php bin/php-cs-fixer fix -n --dry-run --diff -v --ansi features ",
"style:fix": "php bin/php-cs-fixer fix -v --diff --ansi src && php bin/php-cs-fixer fix -v --diff --ansi features",
"test": "composer test:db && composer test:phpunit && composer test:behat && composer test:security",
"test:db": "php app/console d:s:v --ansi --env=test",
"test:security": "php bin/security-checker security:check --ansi",
"test:phpunit": "php bin/phpunit --testsuite App --colors=always",
"test:phpunit:api": "php bin/phpunit --testsuite ApiBundle --colors=always",
"test:phpunit:front": "php bin/phpunit --testsuite FrontBundle --colors=always",
"test:behat": "composer test:behat:api && composer test:behat:front",
"test:behat:api": "php bin/behat --suite=api_features --strict --colors --tags ~@ignore",
"test:behat:front": "php bin/behat --suite=front_features --strict --colors --tags ~@ignore",
"db": "composer db:drop && composer db:create && composer db:seed",
"db:create": "php app/console d:s:c --ansi",
"db:drop": "php app/console d:s:d --force --ansi",
"db:reload": "composer db:update && composer db:seed",
"db:seed": "php app/console h:d:f:l -n --ansi",
"db:update": "php app/console d:s:u --force --ansi",
"db:test": "composer db:test:drop && composer db:test:create && composer db:test:seed",
"db:test:create": "php app/console d:s:c --env=test --ansi",
"db:test:drop": "php app/console d:s:d --env=test --force --ansi",
"db:test:seed": "php app/console h:d:f:l --env=test -n --ansi",
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}