This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
98 lines (98 loc) · 3.14 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
{
"name": "kaishiyoku/crystal-rss",
"description": "Simple web-based RSS feed reader.",
"keywords": ["laravel", "rss"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-pdo": "*",
"bensampo/laravel-enum": "3.2.0",
"davejamesmiller/laravel-breadcrumbs": "5.3.2",
"doctrine/dbal": "2.12.1",
"fideloper/proxy": "4.4.1",
"fruitcake/laravel-cors": "2.0.3",
"glorand/laravel-model-settings": "4.2.1",
"guzzlehttp/guzzle": "7.2.0",
"kaishiyoku/hera-rss-crawler": "0.11.1",
"kaishiyoku/laravel-cli-create-user": "3.1.0",
"kaishiyoku/laravel-color-validation": "1.6.0",
"kaishiyoku/laravel-menu": "4.5.2",
"kaishiyoku/laravel-recharts": "0.9.0",
"khill/php-duration": "1.0.6",
"laracasts/flash": "3.2",
"laravel/framework": "8.25.0",
"laravel/helpers": "1.4.0",
"laravel/horizon": "5.6.5",
"laravel/tinker": "2.6.0",
"laravel/ui": "3.2.0",
"laravelcollective/html": "6.2.1",
"neitanod/forceutf8": "2.0.4",
"pda/pheanstalk": "4.0.3",
"predis/predis": "1.1.6",
"ramsey/uuid": "4.1.1",
"sentry/sentry-laravel": "2.3.1",
"spatie/flysystem-dropbox": "1.2.3",
"spatie/laravel-backup": "6.14.4",
"watson/rememberable": "5.0.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "3.5.2",
"barryvdh/laravel-ide-helper": "2.9.0",
"facade/ignition": "2.5.9",
"fzaninotto/faker": "1.9.2",
"mockery/mockery": "1.4.2",
"nunomaduro/collision": "5.3.0",
"nunomaduro/larastan": "0.6.13",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"analyse": [
".\\vendor\\bin\\phpstan analyse"
],
"ide-helper": [
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan ide-helper:models --dir=\"app/Models\" --write"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}