-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (78 loc) · 2.18 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": "yarscript/laraveleton",
"description": "The Laraveleton project by yarscript",
"minimum-stability": "dev",
"license": "proprietary",
"type": "project",
"authors": [
{
"name": "Yaroslav Shportko",
"email": "yar.yason@gmail.com",
"homepage": "https://github.com/yarscript",
"role": "full-stack developer"
}
],
"repositories": [
{
"type": "path",
"url": "packages/Yarscript/Core"
},
{
"type": "path",
"url": "packages/Yarscript/Admin"
},
{
"type": "path",
"url": "packages/Yarscript/Application"
}
],
"require": {
"php": "^7.4|^8.0",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^1.0",
"fzaninotto/faker": "^1.9",
"intervention/image": "^2.5",
"laravel/framework": "^8.12",
"yarscript/laraveleton-core": "*",
"yarscript/laraveleton-admin": "*",
"yarscript/laraveleton-application": "*"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.3",
"barryvdh/laravel-ide-helper": "^2.10"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope",
"barryvdh/laravel-ide-helper"
]
}
},
"autoload": {
"psr-4": {
"App\\": "vendor/yarscript/laraveleton-core/src",
"Database\\Seeders\\": "database/seeders/",
"Database\\Factories\\": "database/factories/"
}
},
"autoload-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 --ansi"
]
}
}