-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 964 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "manaphp/app-pusher",
"description": "ManaPHP Pusher Application",
"type": "project",
"require": {
"manaphp/framework": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "ManaPHP Mark",
"email": "manaphp@qq.com"
}
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"post-root-package-install": [
"php -n -r \"file_exists('config/.env') || copy('config/.env.example', 'config/.env');\"",
"php -n -r \"chmod('manacli', 0755);\"",
"php -n -r \"is_dir('data')||mkdir('data');chmod('data', 0777);\"",
"php -n -r \"is_dir('tmp')||mkdir('tmp');chmod('tmp', 0777);\""
]
},
"config": {
"preferred-install": "dist"
},
"archive": {
"exclude": [
"!.gitkeep",
"!config/.env",
"!vendor",
".travis.yml"
]
},
"keywords": [
"manaphp",
"ws",
"websocket",
"phalcon",
"laravel",
"yii2"
]
}