forked from leskhq/Laravel-Enterprise-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.39 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
{
"name": "sroutier/laravel-5.1-enterprise-starter-kit",
"description": "A Starter project based on Laravel 5.1 with theme support, optional LDAP/AD authentication, dynamic route authorization, etc...",
"keywords": [
"framework",
"laravel",
"starter kit",
"template",
"theme",
"LDAP",
"Active Directory"
],
"homepage": "https://github.com/sroutier/laravel-5.1-enterprise-starter-kit",
"license": "GPL-3.0",
"authors": [
{
"name": "Sebastien Routier",
"email": "[email protected]"
}
],
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sroutier/laravel-5.1-enterprise-starter-kit"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"doctrine/dbal": "^2.6@dev",
"laravelcollective/html": "~5.0",
"yaap/theme": "dev-laravel-5.1",
"barryvdh/laravel-ide-helper": "^2.0@dev",
"barryvdh/laravel-debugbar": "^2.0@dev",
"laracasts/flash": "~1.3",
"zizaco/entrust": "dev-laravel-5",
"bosnadev/repositories": "0.*",
"sroutier/eloquent-ldap": "^1.0@dev",
"zofe/rapyd": "2.1.*",
"baum/baum": "~1.1",
"sroutier/l51esk-modules": "^3.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"jeroen-g/laravel-packager": "dev-master",
"libern/laravel-sql-logging": "^1.0@dev"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan ide-helper:generate",
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}