forked from BootstrapCMS/CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 3 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
{
"name": "graham-campbell/bootstrap-cms",
"description": "Bootstrap CMS Is A PHP CMS Powered By Laravel 5 And Sentry",
"keywords": ["laravel", "framework", "sentry", "bootstrap", "cms", "bootstrap cms", "Bootstrap CMS", "Bootstrap-CMS", "blog", "login", "Graham Campbell", "GrahamCampbell"],
"license": "AGPL-3.0",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GrahamCampbell/asset"
},
{
"type": "vcs",
"url": "https://github.com/GrahamCampbell/sentry"
}
],
"require": {
"php": ">=5.5.0",
"laravel/framework": "5.0.*",
"illuminate/html": "5.0.*",
"lightgear/asset": "1.5.*",
"graham-campbell/exceptions": "0.1.*",
"graham-campbell/core": "~2.0",
"graham-campbell/database": "0.2.*",
"graham-campbell/htmlmin": "~3.0",
"graham-campbell/markdown": "~3.0",
"graham-campbell/binput": "~3.0",
"graham-campbell/throttle": "~3.0",
"graham-campbell/credentials": "0.4.*",
"graham-campbell/navigation": "~2.0",
"graham-campbell/contact": "0.3.*",
"graham-campbell/logviewer": "0.3.*",
"mccool/laravel-auto-presenter": "~3.0",
"fideloper/proxy": "~2.1",
"barryvdh/laravel-debugbar": "1.8.*",
"maximebf/debugbar": "1.10.*,>1.10.1"
},
"require-dev": {
"graham-campbell/testbench": "~2.0",
"doctrine/dbal": "~2.4"
},
"suggest": {
"doctrine/dbal": "Allow renaming columns and dropping SQLite columns.",
"graham-campbell/cloudflare": "Integration with CloudFlare.",
"pda/pheanstalk": "Enables the beanstalk connector.",
"aws/aws-sdk-php": "Enables the aws connector.",
"iron-io/iron_mq": "Enables the iron connector."
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"GrahamCampbell\\BootstrapCMS\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\BootstrapCMS\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan route:scan",
"php artisan event:scan",
"php artisan optimize --force"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan route:scan",
"php artisan event:scan",
"php artisan optimize --force"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.9-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}