-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.19 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rapidez/webdsite",
"type": "project",
"description": "The Raidez website",
"keywords": [
"rapidez"
],
"license": "GPL-3.0-or-later",
"require": {
"php": "^8.4",
"blade-ui-kit/blade-heroicons": "^2.0",
"blade-ui-kit/blade-icons": "^1.6",
"fruitcake/php-cors": "^1.3",
"guzzlehttp/guzzle": "^7.0.1",
"justbetter/statamic-structured-data": "^2.0",
"laravel/framework": "^13.0",
"laravel/tinker": "^3.0",
"rapidez/blade-directives": "^1.2",
"spatie/laravel-googletagmanager": "^3.0",
"spatie/statamic-responsive-images": "^6.0",
"statamic/cms": "^6.0",
"statamic/eloquent-driver": "^5.0",
"visuellverstehen/statamic-anchor-navigation": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.8",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.12"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"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": {
"pre-update-cmd": [
"Statamic\\Console\\Composer\\Scripts::preUpdateCmd"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan statamic:install --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}