forked from akeneo/pim-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.66 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
{
"name": "akeneo/pim-docs",
"description": "Technical documentation of the Akeneo PIM",
"license": "OSL-3.0",
"require": {
"fabpot/sphinx-php": "1.0.1",
"akeneo/pim-community-dev": "2.0.x-dev@dev",
"symfony/console": "3.3.6"
},
"config": {
"vendor-dir": "vendor"
},
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
},
"classmap": [ "app/AppKernel.php" ]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git",
"branch": "master"
}
],
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"ln -sf $(pwd)/vendor/akeneo/pim-community-dev/app/config/config.yml $(pwd)/app/config/",
"ln -sf $(pwd)/vendor/akeneo/pim-community-dev/app/config/config_dev.yml $(pwd)/app/config/",
"ln -sf $(pwd)/vendor/akeneo/pim-community-dev/app/config/security.yml $(pwd)/app/config/",
"ln -sf $(pwd)/vendor/akeneo/pim-community-dev/app/config/pim_parameters.yml $(pwd)/app/config/",
"php app/console asset:install || php app/console asset:install",
"php app/console oro:assetic:dump"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"incenteev-parameters": {
"keep-outdated": true,
"file": "app/config/parameters.yml"
},
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}