-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.98 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.98 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Doptor/Doptor",
"description": "A Laravel Based CMS",
"keywords": ["framework", "laravel", "cms"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.2.*",
"laravelcollective/html": "5.2.*",
"illuminate/support": "5.2.*",
"cartalyst/sentry": "dev-feature/laravel-5",
"laracasts/presenter": "0.2.*",
"robclancy/presenter": "1.3.*",
"davejamesmiller/laravel-breadcrumbs": "3.0.*",
"intervention/image": "2.*",
"vespakoen/menu": "3.0",
"guzzle/guzzle": "3.9.*",
"barryvdh/laravel-dompdf": "0.6.*",
"mews/captcha": "2.0.*",
"barryvdh/laravel-translation-manager": "0.2.x-dev"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"laracasts/generators": "1.1.*",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0",
"barryvdh/laravel-ide-helper": "2.*"
},
"autoload": {
"classmap": [
"database",
"database/seeds",
"app/Models",
"app/Http/Controllers",
"app/Components",
"app/Facades",
"app/Presenters",
"app/Services",
"app/Components/posts/database/migrations",
"app/Components/ContactManager/Database/Migrations",
"app/Components/ReportBuilder/Database/Migrations",
"app/Components/ReportGenerator/Database/Migrations",
"app/Components/posts/database/seeds",
"app/Components/theme_manager/database/seeds"
],
"files": [
"app/Http/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "app/Modules",
"Components\\": "app/Components"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}