forked from FTXInfotech/laravel-adminpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
119 lines (119 loc) · 3.56 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "viral/laravel-adminpanel",
"description": "The Laravel AdminPanel with API Boilerplate.",
"keywords": [
"framework",
"laravel",
"boilerplate",
"adminpanel",
"rest-api"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.2",
"arcanedev/log-viewer": "^5.1",
"beyondcode/laravel-self-diagnosis": "^1.2",
"creativeorange/gravatar": "~1.0",
"davejamesmiller/laravel-breadcrumbs": "^5.0",
"doctrine/dbal": "^2.9",
"fideloper/proxy": "^4.0",
"krgupta/active": "^4.0",
"laravel/framework": "^6.0",
"laravel/passport": "^7.3.3",
"laravel/socialite": "^4.2",
"laravel/tinker": "~1.0",
"laravelcollective/html": "6.0.*",
"spatie/laravel-cors": "^1.6",
"unisharp/laravel-filemanager": "~1.8",
"yajra/laravel-datatables-oracle": "~9.0"
},
"require-dev": {
"bvipul/generator": "^v6",
"codedungeon/phpunit-result-printer": "^0.26",
"friendsofphp/php-cs-fixer": "^2.14",
"fzaninotto/faker": "^1.4",
"laravel/telescope": "^2.1",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0",
"facade/ignition": "^1.4",
"nunomaduro/collision": "^3.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories",
"database"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/TestCase.php"
],
"files": [
"tests/Utilities/helpers.php"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"clear-all": [
"@php artisan clear-compiled",
"@php artisan cache:clear",
"@php artisan route:clear",
"@php artisan view:clear",
"@php artisan config:clear",
"composer dumpautoload -o"
],
"cache-all": [
"@php artisan config:cache",
"@php artisan route:cache"
],
"cc": [
"composer clear-all",
"composer cache-all"
],
"format": [
"./vendor/bin/php-cs-fixer fix app/ --show-progress=estimating",
"./vendor/bin/php-cs-fixer fix config/ --show-progress=estimating",
"./vendor/bin/php-cs-fixer fix database/ --show-progress=estimating",
"./vendor/bin/php-cs-fixer fix resources/ --show-progress=estimating",
"./vendor/bin/php-cs-fixer fix routes/ --show-progress=estimating",
"./vendor/bin/php-cs-fixer fix tests/ --show-progress=estimating"
],
"self-diagnosis": [
"@composer validate",
"@php artisan self-diagnosis",
"npm audit"
]
}
}