Files
website/composer.json
Nico Verbruggen f97bccd250 Update dependencies
Also includes a security fix for Commonmark, which was not exploitable
on this website because only my own sanctioned Markdown was parsed.
2025-06-10 13:39:39 +02:00

78 lines
2.1 KiB
JSON

{
"name": "phpmon/website",
"type": "project",
"description": "The PHP Monitor website.",
"license": "MIT",
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.9.3",
"laravel/framework": "^11.45.1",
"laravel/tinker": "^2.10.1",
"league/commonmark": "^2.7.0"
},
"require-dev": {
"driftingly/rector-laravel": "^1.2.6",
"fakerphp/faker": "^1.24.1",
"laravel/pint": "^1.22.1",
"laravel/sail": "^1.43.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^10.5.46",
"rector/rector": "^1.2.10",
"spatie/laravel-ignition": "^2.9.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"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"
],
"pint": "./vendor/bin/pint -v",
"rector-dry-run": "./vendor/bin/rector process --dry-run",
"rector": "./vendor/bin/rector process",
"test": "php artisan test",
"coverage": "php artisan test --coverage",
"verify": [
"@rector",
"@pint",
"@test"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"platform": {
"php": "8.3"
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}