-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·101 lines (101 loc) · 2.32 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/cysha/installers"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/theme-default.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/theme-default-admin.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/theme-adminlte.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/theme-cysha.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/module-core.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/module-auth.git"
},
{
"type": "vcs",
"url": "https://github.com/catchuptrycms/module-admin.git"
}
],
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"laravel/framework": "5.3.*",
"composer/installers": "dev-master",
"nwidart/laravel-modules": "1.14.*",
"wikimedia/composer-merge-plugin": "^1.3",
"filp/whoops": "^2.1",
"cysha/theme-default": "dev-master",
"cysha/theme-default-admin": "dev-master",
"cysha/theme-adminlte": "dev-master",
"xlink/pxcms-cysha": "dev-master",
"cysha/module-core": "dev-master",
"cysha/module-auth": "dev-master",
"cysha/module-admin": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"orchestra/testbench": "~3.1",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"symfony/dom-crawler": "~3.1",
"symfony/css-selector": "~3.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"App\\Modules\\": "app/Modules"
},
"files": [
"app/Helpers/Debug.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan cms:update"
],
"post-update-cmd": [
"php artisan cms:update"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
}
}