Files
michaelschiemer/composer.json
Michael Schiemer c8b47e647d feat(Docker): Upgrade to PHP 8.5.0RC3 with native ext-uri support
BREAKING CHANGE: Requires PHP 8.5.0RC3

Changes:
- Update Docker base image from php:8.4-fpm to php:8.5.0RC3-fpm
- Enable ext-uri for native WHATWG URL parsing support
- Update composer.json PHP requirement from ^8.4 to ^8.5
- Add ext-uri as required extension in composer.json
- Move URL classes from Url.php85/ to Url/ directory (now compatible)
- Remove temporary PHP 8.4 compatibility workarounds

Benefits:
- Native URL parsing with Uri\WhatWg\Url class
- Better performance for URL operations
- Future-proof with latest PHP features
- Eliminates PHP version compatibility issues
2025-10-27 09:31:28 +01:00

71 lines
1.9 KiB
JSON

{
"name": "michaelschiemer/website",
"description": "michaelschiemer.de website",
"type": "project",
"license": "proprietary",
"autoload": {
"psr-4": {
"App\\": "src/"
},
"exclude-from-classmap": [
"src/**/*.php85/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Michael Schiemer",
"email": "kontakt@michaelschiemer.de"
}
],
"minimum-stability": "stable",
"require-dev": {
"pestphp/pest": "^3.8",
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"mockery/mockery": "^1.6"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.5",
"predis/predis": "^3.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-curl": "*",
"ext-pcntl": "*",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-gd": "*",
"ext-pdo": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"ext-sodium": "*",
"ext-posix": "*",
"ext-uri": "*"
},
"suggest": {
"ext-apcu": "For better caching performance (not yet available for PHP 8.5)",
"ext-redis": "For Redis cache driver support (not yet available for PHP 8.5)",
"ext-zend-opcache": "For improved performance (built-in for PHP 8.5)"
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --allow-risky=yes || true",
"reload": "composer dump-autoload -o",
"phpstan": "phpstan analyse",
"phpstan-baseline": "phpstan analyse --generate-baseline",
"security:audit": "composer audit --format=table",
"security:audit-json": "composer audit --format=json",
"security:check": "@security:audit --no-dev"
}
}