todo/composer.json

74 lines
2.2 KiB
JSON
Raw Normal View History

2024-04-27 14:17:16 +03:00
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
2024-05-01 16:32:26 +03:00
"php": "^8.3",
2024-05-08 14:20:06 +03:00
"laravel/framework": "^11.7.0",
2024-05-02 10:06:39 +03:00
"laravel/tinker": "^2.9.0",
2024-05-08 14:20:06 +03:00
"laravel/ui": "^4.5.1",
"spatie/laravel-html": "^3.9.0"
2024-04-27 14:17:16 +03:00
},
"require-dev": {
2024-04-27 14:37:50 +03:00
"fakerphp/faker": "^1.23.1",
2024-05-08 14:20:06 +03:00
"laravel/breeze": "^2.0.3",
"laravel/pint": "^1.15.3",
2024-04-27 14:37:50 +03:00
"laravel/sail": "^1.29.1",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^8.1.1",
2024-05-02 10:06:39 +03:00
"phpstan/phpstan": "^1.10.67",
2024-04-27 14:37:50 +03:00
"phpunit/phpunit": "^11.1.3",
2024-05-08 14:20:06 +03:00
"spatie/laravel-ignition": "^2.7.0",
2024-05-02 10:06:39 +03:00
"squizlabs/php_codesniffer": "^3.9.2"
2024-04-27 14:17:16 +03:00
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
2024-04-27 14:37:50 +03:00
"phpcs": "phpcs",
"phpcbf": "phpcbf",
2024-04-27 14:17:16 +03:00
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"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",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}