Files
archived-log-test/composer.json
Alessandro Lai eb640f04c2 Merge pull request #8 from sasezaki/phpunit10
Test with PHPUnit 10, 11
2025-02-02 18:16:44 +01:00

32 lines
641 B
JSON

{
"name": "fig/log-test",
"description": "Test utilities for the psr/log package that backs the PSR-3 specification.",
"keywords": ["testing"],
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/",
"role": "Organisation"
}
],
"require": {
"php": "^8.0",
"psr/log": "^2.0 | ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Psr\\Log\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fig\\Log\\Tests\\": "tests"
}
}
}