-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 3.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
{
"name": "eugene-matvejev/battleship-game-api",
"description": "Battleship Game API, more info: please check README.md",
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"EM\\": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"EM\\Tests\\PHPUnit\\": "tests/phpunit",
"EM\\Tests\\Behat\\": "tests/behat/contexts",
"EM\\Tests\\Environment\\": "tests/shared-environment"
}
},
"authors": [
{
"name": "Eugene Matvejev",
"email": "[email protected]"
}
],
"repositories": [
{ "type": "vcs", "url": "https://github.com/eugene-matvejev/battleship-game-api-json-schema" }
],
"require": {
"php": ">=7.1",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/orm": "^2.6",
"incenteev/composer-parameter-handler": "^2.1",
"jms/serializer-bundle": "^2.3",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^5.1",
"symfony/symfony": "^3.4",
"symfony/monolog-bundle": "^3.1",
"ocramius/package-versions" : "^1.1"
},
"require-dev": {
"doctrine/doctrine-migrations-bundle": "^1.3",
"doctrine/doctrine-fixtures-bundle": "2.4",
"nelmio/api-doc-bundle": "^3.0",
"behat/behat": "^3.4",
"kahlan/kahlan": "^2.5",
"phpunit/phpunit": "^5.5",
"eugene-matvejev/battleship-game-api-json-schema": "^1.0.0",
"justinrainbow/json-schema": "5.2.1"
},
"scripts": {
"post-update-cmd": "@deployment-scripts",
"post-install-cmd": "@deployment-scripts",
"deployment-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@symfony-scripts"
],
"symfony-scripts": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"compile": [
"rm web/app_dev.php",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"php bin/console doctrine:schema:drop --full-database --force",
"php bin/console doctrine:migrations:migrate --no-interaction"
]
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"file": "app/config/parameters.yml",
"dist-file": "app/config/parameters.yml.dist",
"env-map": {
"secret": "SECRET_SYMFONY_TOKEN",
"database_driver": "DATABASE_ENGINE",
"database_encoding": "DATABASE_ENCODING",
"database_host": "DATABASE_HOST",
"database_port": "DATABASE_PORT",
"database_name": "DATABASE_NAME",
"database_name_test": "DATABASE_NAME_TEST",
"database_user": "DATABASE_USER",
"database_path": "DATABASE_PATH",
"database_password": "DATABASE_PASSWORD"
}
}
}
}