-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
106 lines (106 loc) · 3.22 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"brendt/php-sparkline": "^1.0",
"coderjerk/bird-elephant": "^0.6.1",
"dg/rss-php": "^1.5",
"dg/twitter-php": "^4.1",
"doctrine/dbal": "^3.3",
"donatello-za/rake-php-plus": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.2",
"laravel/horizon": "^5.9",
"laravel/sanctum": "^2.14.1",
"laravel/socialite": "^5.6",
"laravel/tinker": "^2.7",
"league/oauth2-client": "^2.7",
"livewire/livewire": "^2.12",
"paquettg/php-html-parser": "^3.1",
"ramsey/uuid": "^4.3",
"smolblog/oauth2-twitter": "^1.1",
"socialiteproviders/reddit": "^4.1",
"spatie/laravel-backup": "^8.1",
"spatie/laravel-feed": "^4.1",
"spatie/laravel-mail-preview": "^6.0",
"spatie/laravel-route-attributes": "^1.10",
"spatie/laravel-stubs": "^2.4",
"spatie/period": "^2.4"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.12",
"fakerphp/faker": "^1.9.1",
"laravel/breeze": "^1.9",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5.10",
"rector/rector": "^0.15.0",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files" : [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"phpstan": [
"./vendor/bin/phpstan analyse"
],
"test": [
"./vendor/bin/phpunit"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan spatie-stub:publish --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"ide-helper": [
"@php artisan ide-helper:models -N",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:eloquent",
"@php artisan ide-helper:meta"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}