forked from cachethq/cachet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
104 lines (104 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "cachethq/cachet",
"description": "An open source status page system, for everyone.",
"keywords": ["laravel", "cachet", "alt-three", "status", "page"],
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "James Brooks",
"email": "[email protected]"
},
{
"name": "Graham Campbell",
"email": "[email protected]"
},
{
"name": "Joseph Cohen",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "~5.1.24",
"alt-three/emoji": "^2.1",
"alt-three/validator": "^1.4",
"barryvdh/laravel-cors": "^0.7",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^3.0",
"graham-campbell/binput": "^3.3",
"graham-campbell/core": "^4.2",
"graham-campbell/markdown": "^5.3",
"graham-campbell/throttle": "^5.1",
"graham-campbell/exceptions": "^6.0",
"guzzlehttp/guzzle": "^6.1",
"jenssegers/date": "^3.0",
"mccool/laravel-auto-presenter": "^4.2",
"pragmarx/google2fa": "^0.7",
"rcrowe/twigbridge": "^0.9",
"roumen/feed": "^2.9"
},
"require-dev": {
"filp/whoops": "^1.1",
"fzaninotto/faker": "^1.5",
"graham-campbell/testbench-core": "^1.1",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/Http/helpers.php"
],
"psr-4": {
"CachetHQ\\Cachet\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"CachetHQ\\Tests\\Cachet\\": "tests/"
}
},
"scripts": {
"pre-install-cmd": [
"rm -f compiled.php config.php routes.php services.json"
],
"post-install-cmd": [
"php artisan optimize --force",
"php artisan config:cache",
"php artisan route:cache",
"chmod -R 755 storage"
],
"pre-update-cmd": [
"rm -f compiled.php config.php routes.php services.json"
],
"post-update-cmd": [
"php artisan optimize --force",
"php artisan config:cache",
"php artisan route:cache",
"chmod -R 755 storage"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"test": [
"phpunit"
]
},
"config": {
"platform": {
"php": "5.5.9"
},
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}