-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.root.json
47 lines (47 loc) · 1.19 KB
/
composer.root.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
{
"name": "electro/electro",
"description": "The Electro PHP Web Framework",
"keywords": [
"framework"
],
"license": "MIT",
"homepage": "https://github.com/electro/electro",
"authors": [
{
"name": "Impactwave",
"email": "[email protected]",
"homepage": "http://impactwave.com"
},
{
"name": "Cláudio Silva",
"email": "[email protected]"
}
],
"type": "project",
"config": {
"preferred-install": "dist",
"vendor-dir": "private/packages",
"bin-dir": "bin",
"allow-plugins": {
"electro/installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"electro/framework": "dev-latest"
},
"autoload": {
"psr-4": {
"App\\": "private/src"
}
},
"scripts": {
"post-create-project-cmd": "App\\Bootloader::runInitCommand",
"post-install-cmd": "App\\Bootloader::runInitCommand",
"post-update-cmd": "App\\Bootloader::runUpdateCommand",
"pre-package-uninstall": "App\\Bootloader::runUninstallCommand",
"post-root-package-install": "App\\Installation::runPreInstallCommand",
"pre-install-cmd": "App\\Installation::runPreInstallCommand"
}
}