-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.29 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.29 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
{
"name": "ccu-plus/api-service",
"description": "CCU PLUS API Service.",
"license": "AGPL-3.0-only",
"type": "project",
"version": "1.0.4",
"keywords": [
"ccu-plus"
],
"require": {
"php": "^8.4",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
"algolia/algoliasearch-client-php": "^4.19",
"bepsvpt/secure-headers": "^9.0",
"gregwar/captcha": "^1.2",
"guzzlehttp/guzzle": "^7.9",
"laravel/framework": "^12.15",
"laravel/scout": "^10.15",
"laravel/tinker": "^2.10",
"paquettg/php-html-parser": "^2.2",
"spatie/laravel-fractal": "^6.3",
"thepixeldeveloper/sitemap": "^5.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"laravel/pint": "^1.22",
"rector/rector": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"database/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"format": [
"@putenv XDEBUG_MODE=off",
"pint -vvv --cache-file=.pint.php --no-interaction"
],
"rector": "rector process --memory-limit=-1"
}
}