-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "realshadow/satis-control-panel",
"description": "Satis Control Panel (SCP) is a simple web UI for managing your Satis Repository for Composer packages.",
"keywords": ["satis", "control panel", "composer", "proxy", "packagist proxy", "satis proxy"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"jms/serializer": "^1.0",
"composer/composer": "^1.4",
"composer/satis": "^1.0@alpha"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"barryvdh/laravel-ide-helper": "^2.1"
},
"autoload": {
"classmap": [
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
]
},
"scripts": {
"post-install-cmd": [
"npm install",
"npm run build"
],
"pre-autoload-dump": [
"php artisan clear-compiled"
],
"post-autoload-dump": [
"php artisan optimize"
],
"post-create-project-cmd": [
"mkdir -p storage/logs/async",
"cp example.env .env",
"cp resources/satis.json.dist resources/satis.json"
]
},
"config": {
"preferred-install": "dist"
}
}