-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.46 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
{
"name": "bishopm/connexion",
"type": "library",
"description": "Laravel-based church membership and website administration",
"keywords": [
"church",
"database"
],
"homepage": "https://github.com/bishopm/connexion",
"license": "MIT",
"authors": [
{
"name": "Michael Bishop",
"email": "[email protected]",
"homepage": "https://github.com/bishopm",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/bishopm/laravel-menus"
}
],
"require": {
"illuminate/support": "5.*",
"jeroennoten/laravel-adminlte":"1.*",
"laravelcollective/html": "5.*",
"laravel/socialite": "3.*",
"laracasts/flash": "3.*",
"cviebrock/eloquent-sluggable":"^4.5",
"nwidart/laravel-menus": "4.*",
"league/oauth2-client": "^1.4",
"plank/laravel-mediable": "^2.3",
"cartalyst/tags": "8.*",
"beyondcode/laravel-comments": "1.*",
"jrean/laravel-user-verification": "7.*",
"felixkiss/uniquewith-validator": "3.*",
"lithiumdev/laravel-tagcloud": "1.*",
"guzzlehttp/guzzle": "6.*",
"laravelium/feed": "3.*",
"spatie/laravel-activitylog": "3.*",
"spatie/laravel-analytics": "3.*",
"spatie/laravel-permission": "2.*",
"tymon/jwt-auth": "1.*",
"barryvdh/laravel-cors": "0.11.*",
"consoletvs/charts": "6.*",
"laravel-notification-channels/webpush": "3.*"
},
"require-dev": {
"phpunit/phpunit" : "~6.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Bishopm\\Connexion\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"bishopm\\connexion\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"post-install-cmd": [
"ln -sr storage/app/public public/storage"
],
"post-package-update": [
"php artisan vendor:publish",
"php artisan migrate"
]
},
"config": {
"sort-packages": true
}
}