-
-
Notifications
You must be signed in to change notification settings - Fork 379
/
composer.json
117 lines (117 loc) · 3.82 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-zend-opcache": "*",
"ext-zip": "*",
"assada/laravel-achievements": "^2.7",
"bjeavons/zxcvbn-php": "^1.3.1",
"doctrine/dbal": "^3.9.3",
"gabrielelana/byte-units": "^0.5.0",
"guzzlehttp/guzzle": "^7.9.2",
"hdvinnie/laravel-joypixel-emojis": "^v3.0.0",
"hdvinnie/laravel-security-headers": "^v3.0.0",
"intervention/image": "^2.7.2",
"joypixels/assets": "^v7.0.1",
"laravel/fortify": "1.20.0",
"laravel/framework": "^11.28.1",
"laravel/octane": "^2.5.9",
"laravel/scout": "^10.11.4",
"laravel/tinker": "^2.10.0",
"livewire/livewire": "^3.5.12",
"marcreichel/igdb-laravel": "^4.3.0",
"meilisearch/meilisearch-php": "^1.10.1",
"nesbot/carbon": "2.72.3",
"paragonie/constant_time_encoding": "^2.7.0",
"resend/resend-laravel": "^0.14.0",
"spatie/laravel-backup": "^8.8.2",
"spatie/laravel-cookie-consent": "^3.3.2",
"spatie/laravel-image-optimizer": "^1.8.0",
"spatie/ssl-certificate": "^2.6.8",
"symfony/dom-crawler": "^6.4.12",
"theodorejb/polycast": "dev-master",
"voku/anti-xss": "^4.1.42",
"vstelmakh/url-highlight": "^3.1.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14.6",
"brianium/paratest": "v7.4.0",
"calebdw/larastan": "2.10.5",
"calebdw/larastan-livewire": "^1.1.0",
"fakerphp/faker": "^1.23.1",
"jasonmccreary/laravel-test-assertions": "^2.4.1",
"laravel/pint": "^1.18.1",
"laravel/sail": "1.31.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.5.0",
"pestphp/pest": "^2.35.1",
"pestphp/pest-plugin-laravel": "^2.4.0",
"pestphp/pest-plugin-livewire": "^v2.1.0",
"phpstan/phpstan": "1.12.0",
"phpunit/phpunit": "10.5.17",
"ryoluo/sail-ssl": "^1.3.2",
"spatie/laravel-ignition": "^2.8.0",
"tomasvotruba/bladestan": "^0.5.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"ext-mcrypt": "1.0"
},
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi",
"@php artisan vendor:publish --tag=public --provider=\"hdvinnie\\LaravelJoyPixels\\LaravelJoyPixelsServiceProvider\""
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
}
}