This repository was archived by the owner on Mar 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.26 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 2.26 KB
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
{
"name": "acs/acspanel-core",
"type": "symfony-bundle",
"description": "ACSPanel core bundle. It integrates all other bundles into full stack Symfony2 Server Administration solution.",
"keywords": ["symfony","symfony2","acspanel","distribution","server","administration","sysadmin"],
"license": "GPLv3",
"homepage": "http://acspanel.acs.li",
"authors": [
{
"name": "Martí Cardús",
"email": "marti@acs.li"
},
{
"name": "Genar Trias",
"email": "genar@acs.li",
"homepage": "http://genar.me/"
}
],
"require": {
"php": ">=5.3.3",
"friendsofsymfony/user-bundle": "2.0.*@dev",
"acs/acspanel-settings": "dev-master",
"acs/acspanel-wordpress": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"scripts": {
"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"
],
"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"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": { "ACS\\ACSPanelBundle\\": "" }
},
"extra": {
"incenteev-parameters": {
"file": "app/main/config/parameters.yml"
},
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}