forked from akeneo/pim-community-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 3.16 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
{
"name": "akeneo/pim-community-standard",
"description": "The \"Akeneo Community Standard Edition\" distribution",
"license": "OSL-3.0",
"type": "project",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
"Pim\\Upgrade\\": "upgrades/"
},
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ],
"exclude-from-classmap": [
"vendor/akeneo/pim-community-dev/app/AppKernel.php",
"vendor/akeneo/pim-community-dev/app/AppCache.php"
]
},
"require": {
"php": ">=7.2.0",
"akeneo/pim-community-dev": "3.0.x-dev@dev"
},
"require-dev": {
"doctrine/migrations": "1.5.0",
"doctrine/doctrine-migrations-bundle": "1.2.1"
},
"scripts": {
"symfony-scripts": [
"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",
"php bin/console --ansi fos:js-routing:dump --target=web/js/routes.js",
"php bin/console --ansi pim:installer:assets"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts",
"Akeneo\\Platform\\Bundle\\InstallerBundle\\ComposerScripts::copyUpgradesFiles"
]
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"keep-outdated": true,
"file": "app/config/parameters.yml",
"env-map": {
"database_host": "PIM_DATABASE_HOST",
"database_port": "PIM_DATABASE_PORT",
"database_name": "PIM_DATABASE_NAME",
"database_user": "PIM_DATABASE_USER",
"database_password": "PIM_DATABASE_PASSWORD",
"index_hosts": "PIM_INDEX_HOSTS"
}
},
"branch-alias": {
"dev-master": "3.0.x-dev",
"dev-2.3": "2.3.x-dev",
"dev-2.2": "2.2.x-dev",
"dev-2.1": "2.1.x-dev",
"dev-2.0": "2.0.x-dev",
"dev-1.7": "1.7.x-dev",
"dev-1.6": "1.6.x-dev",
"dev-1.5": "1.5.x-dev",
"dev-1.4": "1.4.x-dev",
"dev-1.3": "1.3.x-dev",
"dev-1.2": "1.2.x-dev",
"dev-1.1": "1.1.x-dev",
"dev-1.0": "1.0.x-dev"
}
}
}