-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.76 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.1.*",
"laracasts/flash": "~1.0",
"laracasts/presenter": "0.2.*",
"laracasts/utilities": "~3.0",
"guzzlehttp/guzzle": "~6.0",
"pda/pheanstalk": "~2.0",
"bugsnag/bugsnag-laravel": "^2.0",
"crodas/text-rank": "dev-master",
"laravelcollective/html": "5.1.*",
"php": ">=7.0.0",
"doctrine/dbal": "^2.6",
"neitanod/forceutf8": "~2.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "2.*",
"barryvdh/laravel-debugbar": "2.1.*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"classmap": [
"database"
],
"files": [],
"psr-0": {
"HiveMind": "app/"
},
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan ide-helper:generate",
"php artisan ide-helper:models",
"php artisan ide-helper:meta",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
}
}