PhyrePanel/web/composer.json

90 lines
2.6 KiB
JSON
Raw Normal View History

2023-11-23 20:25:06 +00:00
{
2024-04-01 14:11:28 +00:00
"name": "cloudvision/phyrepanel",
2023-11-23 20:25:06 +00:00
"type": "project",
"description": "The skeleton application for the Laravel framework.",
2023-11-23 21:38:30 +00:00
"keywords": [
"laravel",
"framework"
],
2023-11-23 20:25:06 +00:00
"license": "MIT",
"require": {
"php": "^8.1",
2024-04-01 18:02:10 +00:00
"acmephp/core": "*",
2024-04-02 17:27:24 +00:00
"archilex/filament-toggle-icon-column": "^3.1",
2023-11-26 23:12:27 +00:00
"calebporzio/sushi": "^2.4",
2024-04-02 11:08:12 +00:00
"coolsam/modules": "^3.0@beta",
"filament/filament": "^3.0",
2023-11-23 20:25:06 +00:00
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.10",
"laravel/sanctum": "^3.3",
2023-11-23 23:40:19 +00:00
"laravel/tinker": "^2.8",
2023-11-27 20:57:30 +00:00
"mkocansey/bladewind": "^2.4",
2024-04-02 11:08:12 +00:00
"nwidart/laravel-modules": "^10.0",
2024-04-02 12:41:07 +00:00
"outerweb/filament-settings": "^1.2",
2024-04-02 11:08:12 +00:00
"symfony/process": "^6.3",
2024-04-02 12:41:07 +00:00
"symfony/yaml": "^7.0",
2024-04-02 17:43:56 +00:00
"tapp/filament-authentication-log": "^3.0",
"torann/geoip": "^3.0",
2024-04-02 11:08:12 +00:00
"wikimedia/composer-merge-plugin": "^2.1"
2023-11-23 20:25:06 +00:00
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
2023-11-23 21:38:30 +00:00
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
2023-11-23 20:25:06 +00:00
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
2024-04-02 11:08:12 +00:00
},
"merge-plugin": {
"include": [
"Modules/*/composer.json"
]
2023-11-23 20:25:06 +00:00
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
2024-04-02 11:08:12 +00:00
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true
2023-11-23 20:25:06 +00:00
}
},
2024-04-02 11:08:12 +00:00
"minimum-stability": "dev",
2023-11-23 20:25:06 +00:00
"prefer-stable": true
}