-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
63 lines (63 loc) · 1.68 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
{
"caution":"Please DO NOT edit this file directly, use composer.local.json instead",
"name": "phwoolcon/bootstrap",
"description": "Phalcon + Swoole Framework Bootstrap",
"keywords": ["framework", "phwoolcon", "phalcon", "swoole"],
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Christopher CHEN",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"optimize-autoloader": true,
"require": {
"php": ">=5.5.0",
"phwoolcon/phwoolcon": "~1.0",
"wikimedia/composer-merge-plugin": "dev-master#96c44b1c"
},
"autoload": {
"classmap": [
"app/library"
],
"psr-4": {
"Tests\\": "tests"
},
"exclude-from-classmap": [
"/tests/"
]
},
"scripts": {
"pre-update-cmd": [
"bin/import-package"
],
"post-install-cmd": [
"bin/install/generate-cookie-encrypt-key"
],
"pre-autoload-dump": [
],
"post-autoload-dump": [
"bin/convert-autoload",
"vendor/bin/update-phwoolcon-package-resource",
"bin/cli clear:cache -calmr",
"@post-package-resources"
],
"post-package-resources": [""],
"pure-update": "@composer update --no-scripts"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"merge-plugin": {
"include": [
"composer.local*.json"
],
"merge-scripts": true,
"merge-scripts-deep": true
}
}
}