-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 969 Bytes
/
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
{
"name": "phpearth/install",
"description": "PHP.earth installation wizard",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PHP.earth contributors",
"homepage": "https://github.com/phpearth/install/graphs/contributors"
}
],
"require": {
"sculpin/sculpin": "*@dev",
"kriswallsmith/assetic": "^1.1",
"components/bootstrap": "^4.1",
"components/jquery": "^3.1",
"components/highlightjs": "^9.7"
},
"minimum-stability": "dev",
"config": {
"component-dir": "source/components",
"components": [
"components/bootstrap",
"components/jquery",
"components/highlightjs"
]
},
"scripts": {
"post-install-cmd": [
"ComponentManager\\ComponentManager::postComposerInstall"
]
},
"autoload": {
"classmap": ["component-manager.php"]
}
}