forked from cachethq/cachet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 3.04 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
105
106
{
"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.2.39",
"alt-three/badger": "^3.1",
"alt-three/bus": "^1.1",
"alt-three/emoji": "^3.1",
"alt-three/throttle": "^1.0",
"alt-three/validator": "^1.5",
"aws/aws-sdk-php": "^3.7",
"backup-manager/laravel": "^1.1",
"barryvdh/laravel-cors": "^0.8",
"doctrine/dbal": "^2.5",
"fedeisas/laravel-mail-css-inliner": "^1.5",
"fideloper/proxy": "^3.1",
"graham-campbell/binput": "^3.4",
"graham-campbell/core": "^5.1",
"graham-campbell/exceptions": "^8.6",
"graham-campbell/markdown": "^6.1",
"guzzlehttp/guzzle": "^6.2.1",
"jenssegers/date": "^3.2",
"mccool/laravel-auto-presenter": "^4.3",
"pragmarx/google2fa": "^0.7.1",
"rcrowe/twigbridge": "^0.9.2",
"roumen/feed": "^2.10.4"
},
"require-dev": {
"alt-three/testbench": "^1.7",
"filp/whoops": "^2.1",
"fzaninotto/faker": "^1.6",
"graham-campbell/testbench-core": "^1.1",
"mockery/mockery": "0.9.5",
"phpunit/phpunit": "4.8.21",
"symfony/css-selector": "^3.0",
"symfony/dom-crawler": "^3.0"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/helpers.php"
],
"psr-4": {
"CachetHQ\\Cachet\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"CachetHQ\\Tests\\Cachet\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize --force",
"php artisan config:cache",
"php artisan route:cache"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize --force",
"php artisan config:cache",
"php artisan route:cache"
]
},
"config": {
"platform": {
"php": "5.5.9"
},
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}