diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/composer.json b/composer.json index aca3d6f..febdd23 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "gecko-packages/gecko-php-unit", "type": "library", "homepage": "https://github.com/GeckoPackages", - "description": "Additional PHPUnit tests.", + "description": "Additional PHPUnit asserts and constraints.", "license": "MIT", "keywords": ["PHPUnit", "Extension", "FileSystem"], "require": { @@ -13,7 +13,16 @@ }, "autoload": { "psr-4": { - "GeckoPackages\\PHPUnit\\": "src\\PHPUnit" + "GeckoPackages\\PHPUnit\\": "src/PHPUnit" } + }, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "suggest": { + "ext-dom": "When testing with xml.", + "ext-libxml": "When testing with xml.", + "phpunit/phpunit" : "This is an extension for it so make sure you have it some way." } } |