diff options
Diffstat (limited to 'vendor/chillerlan/php-settings-container/composer.json')
-rw-r--r-- | vendor/chillerlan/php-settings-container/composer.json | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/vendor/chillerlan/php-settings-container/composer.json b/vendor/chillerlan/php-settings-container/composer.json index 1d89b6c41..16b8e5ecb 100644 --- a/vendor/chillerlan/php-settings-container/composer.json +++ b/vendor/chillerlan/php-settings-container/composer.json @@ -1,12 +1,12 @@ { "name": "chillerlan/php-settings-container", - "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+", + "description": "A container class for immutable settings objects. Not a DI container.", "homepage": "https://github.com/chillerlan/php-settings-container", "license": "MIT", "type": "library", "minimum-stability": "stable", "keywords": [ - "php7", "helper", "container", "settings", "configuration" + "helper", "container", "settings", "configuration" ], "authors": [ { @@ -20,27 +20,29 @@ "source": "https://github.com/chillerlan/php-settings-container" }, "require": { - "php": "^7.4 || ^8.0", + "php": "^8.1", "ext-json": "*" }, "require-dev": { - "phan/phan": "^5.3", - "phpunit/phpunit": "^9.5" + "phpmd/phpmd": "^2.15", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-deprecation-rules": "^1.2", + "phpunit/phpunit": "^10.5", + "squizlabs/php_codesniffer": "^3.10" }, "autoload": { "psr-4": { - "chillerlan\\Settings\\": "src/" + "chillerlan\\Settings\\": "src" } }, "autoload-dev": { "psr-4": { - "chillerlan\\SettingsTest\\": "tests/", - "chillerlan\\SettingsExamples\\": "examples/" + "chillerlan\\SettingsTest\\": "tests" } }, "scripts": { "phpunit": "@php vendor/bin/phpunit", - "phan": "@php vendor/bin/phan" + "phpstan": "@php vendor/bin/phpstan" }, "config": { "lock": false, |