-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·60 lines (60 loc) · 1.48 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
{
"name": "atorscho/backend",
"description": "Administration Control Panel for Laravel 5.1+ projects.",
"keywords": [
"admin",
"admincp",
"administration",
"backend",
"control",
"cp",
"panel"
],
"homepage": "https://github.com/atorscho/backend",
"license": "MIT",
"authors": [
{
"name": "Alex Torscho",
"email": "[email protected]",
"homepage": "http://alextorscho.com",
"role": "Developer"
}
],
"require": {
"php" : ">=5.5.9",
"laravel/framework": "5.1.*",
"atorscho/crumbs": "~2.1",
"atorscho/membership": "dev-master",
"atorscho/menus": "dev-master",
"cocur/slugify": "~1.2",
"intervention/image": "~2.3",
"laravelcollective/html": "^5.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "~2.0",
"doctrine/dbal": "~2.3",
"fzaninotto/faker": "~1.4",
"laracasts/generators": "~1.1",
"mockery/mockery": "0.9.*",
"phpspec/phpspec": "~2.1",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Atorscho\\Backend\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atorscho\\Backend\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}