-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (64 loc) · 1.68 KB
/
composer.json
File metadata and controls
68 lines (64 loc) · 1.68 KB
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
{
"name": "mohangk/laravel_sample_app",
"description": "A sample app built on the Laravel Framework.",
"keywords": [
"laravel",
"sample app",
"rails"
],
"repositories": [{
"type": "vcs",
"url": "https://github.com/mohangk/Codeception"
},{
"type": "vcs",
"url": "https://github.com/sillylogger/Laravel-4-Generators"
}],
"require": {
"laravel/framework": "~4",
"jasonlewis/basset": "dev-master",
"hybridauth/hybridauth": "*",
"thujohn/analytics": "dev-master",
"rcrowe/twigbridge": "dev-master"
},
"require-dev": {
"way/generators": "dev-woi",
"davejamesmiller/laravel-boris": "dev-master",
"lisachenko/go-aop-php": "dev-master",
"mockery/mockery": "dev-master",
"codeception/codeception": "dev-all_pg_fixes",
"codeception/specify": "*",
"juy/profiler": "dev-master",
"summerstreet/woodling": "0.1.*",
"fzaninotto/Faker": "dev-master"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/lib",
"app/models",
"app/database/migrations",
"app/database/seeds",
"tests/unit/controllers/ControllerTest.php",
"tests/unit/lib/LibTest.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}