-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
132 lines (132 loc) · 4.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-intl": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-uuid": "*",
"ans-group/laravel-health-check": "2.0.1",
"apereo/phpcas": "1.6.1",
"enlightn/enlightn": "2.10.0",
"enlightn/security-checker": "^2.0",
"google/apiclient": "2.18.2",
"guzzlehttp/guzzle": "7.9.2",
"htmlmin/htmlmin": "dev-master",
"kelvinmo/simplejwt": "0.9.2",
"laravel/framework": "11.38.2",
"laravel/horizon": "5.30.1",
"laravel/pint": "1.19.0",
"laravel/sanctum": "4.0.7",
"laravel/slack-notification-channel": "3.4.2",
"laravel/tinker": "2.10.0",
"mrclay/jsmin-php": "2.4.3",
"sentry/sentry-laravel": "4.10.0",
"spatie/laravel-failed-job-monitor": "4.3.2",
"spatie/laravel-github-webhooks": "1.2.3",
"subfission/cas": "^5.0"
},
"require-dev": {
"fakerphp/faker": "1.23.1",
"mockery/mockery": "1.6.11",
"nunomaduro/collision": "8.1.1",
"larastan/larastan": "2.9.11",
"phan/phan": "5.4.3",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.11",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-strict-rules": "1.6.1",
"psalm/plugin-laravel": "2.11.0",
"slevomat/coding-standard": "8.15.0",
"spatie/laravel-ignition": "2.5.2",
"squizlabs/php_codesniffer": "3.9.1",
"vimeo/psalm": "5.23.1"
},
"replace": {
"paragonie/random_compat": "*",
"rap2hpoutre/fast-excel": "*",
"symfony/polyfill-apcu": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-messageformatter": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php54": "*",
"symfony/polyfill-php55": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-util": "*",
"symfony/polyfill-uuid": "*"
},
"config": {
"classmap-authoritative": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
},
"platform": {
"php": "8.3.6"
}
},
"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"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/RoboJackets/Laravel-HTMLMin.git"
}
]
}