forked from matthusby/maintenance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.1 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
{
"name": "stevebauman/maintenance",
"description": "A Preventative Maintenance Application (CMMS) for Laravel",
"keywords": ["laravel", "orchestra-platform", "cmms", "maintenance"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"orchestra/foundation": "3.2.*",
"orchestra/installer": "3.2.*",
"orchestra/control": "3.2.*",
"adldap2/adldap2-laravel": "1.4.*",
"stevebauman/inventory": "1.7.*",
"stevebauman/calendar-helper": "0.2.*",
"stevebauman/log-reader": "1.0.*",
"stevebauman/core-helper": "1.1.*",
"stevebauman/viewer": "1.0.*",
"stevebauman/eloquenttable": "1.1.*",
"stevebauman/purify": "1.1.*",
"stevebauman/revision": "1.1.*",
"stevebauman/active": "1.0.*",
"arcanedev/no-captcha": "2.0.*",
"ramsey/uuid": "2.8.*",
"baum/baum": "1.1.*",
"dompdf/dompdf": "0.6.*",
"simplesoftwareio/simple-qrcode": "1.3.*",
"davejamesmiller/laravel-breadcrumbs": "3.0.*",
"google/apiclient": "1.1.*"
},
"require-dev": {
"orchestra/studio": "~3.2",
"orchestra/testing": "~3.2"
},
"autoload": {
"classmap": [
"resources/database"
],
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/"
}
},
"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": [
"php artisan clear-compiled",
"php artisan orchestra:assemble"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan orchestra:assemble"
]
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "stable"
}