-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
107 lines (107 loc) · 2.79 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
107
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "~5.1",
"pingpong/support": "~2.0",
"pingpong/modules": "dev-feature/5.1",
"cartalyst/sentry": "dev-feature/laravel-5",
"asgardcms/core-module": "~1.0",
"asgardcms/dashboard-module": "~1.0",
"asgardcms/user-module": "~1.0",
"asgardcms/setting-module": "~1.0",
"asgardcms/media-module": "~1.0",
"asgardcms/page-module": "~1.0",
"asgardcms/menu-module": "~1.0",
"asgardcms/workshop-module": "~1.0",
"asgardcms/flatly-theme": "~1.0",
"asgardcms/adminlte-theme": "~1.0",
"guzzlehttp/guzzle": "~5.0",
"kzykhys/git": "dev-patch-1",
"daylerees/kurenai": "~1.0",
"michelf/php-markdown": "~1.4",
"knplabs/github-api": "~1.2",
"pda/pheanstalk": "~3.0",
"bugsnag/bugsnag-laravel": "1.4.2",
"predis/predis": "~1.1@dev",
"mailchimp/mailchimp": "2.0.6",
"asgardcms/blog-module": "~1.0",
"asgardcms/translation-module": "^1.6",
"spatie/laravel-backup": "^2.8",
"league/flysystem-aws-s3-v3": "~1.0",
"lord/laroute": "^2.1",
"knplabs/packagist-api": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"barryvdh/laravel-ide-helper": "~2.0@dev",
"barryvdh/laravel-debugbar": "~2.0",
"behat/behat": "~3.0@dev",
"behat/mink": "~1.7@dev",
"behat/mink-extension": "~2.0@dev",
"laracasts/behat-laravel-extension": "dev-master",
"deployer/deployer": "~3.0",
"deployphp/recipes": "~3.0",
"laravel/homestead": "dev-php-7"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.cartalyst.com"
},
{
"type": "vcs",
"url": "https://github.com/nWidart/PHPGit"
},
{
"type": "vcs",
"url": "https://github.com/nWidart/modules"
}
],
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan stylist:publish",
"php artisan module:publish",
"php artisan optimize",
"php artisan docs:write-routes"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan stylist:publish",
"php artisan module:publish",
"php artisan module:migrate --force",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}