-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (98 loc) · 2.94 KB
/
composer.json
File metadata and controls
98 lines (98 loc) · 2.94 KB
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
{
"name": "laravel/laravel",
"type": "project",
"description": "A tool to manage your families and friends recipes like a chef.",
"keywords": [
"cookbook",
"recipes"
],
"license": "AGPLv3",
"require": {
"php": "^7.4|^8.0",
"askedio/laravel-soft-cascade": "^8.1",
"barryvdh/laravel-dompdf": "^0.9",
"doctrine/dbal": "^3.2",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^2.0",
"grkamil/laravel-telegram-logging": "v1.7",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"laravel/fortify": "^1.8",
"laravel/framework": "^8.9",
"laravel/sanctum": "^2.12",
"laravel/scout": "^9.3",
"laravel/tinker": "^2.6",
"meilisearch/meilisearch-php": "^0.20",
"rutorika/sortable": "^8.0",
"spatie/laravel-medialibrary": "^9.8"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.10",
"barryvdh/laravel-translation-manager": "^0.5.10",
"facade/ignition": "^2.17",
"fakerphp/faker": "^1.16",
"friendsofphp/php-cs-fixer": "^3.3",
"laravel/sail": "^1.12",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0",
"phpunit/phpunit": "^9.5",
"stechstudio/laravel-php-cs-fixer": "^3.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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 --ansi"
],
"phpstan": [
"@php ./vendor/bin/phpstan analyse"
],
"php-cs-fixer": [
"@php artisan fixer:fix"
],
"ide-helper:generate": [
"@php artisan ide-helper:generate",
"php artisan ide-helper:models -R -W"
],
"translations:import": [
"@php artisan translations:import"
],
"translations:export": [
"@php artisan translations:export \\*",
"@php artisan fixer:fix --path resources/lang"
]
}
}