summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..febdd23
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,28 @@
+{
+ "name": "gecko-packages/gecko-php-unit",
+ "type": "library",
+ "homepage": "https://github.com/GeckoPackages",
+ "description": "Additional PHPUnit asserts and constraints.",
+ "license": "MIT",
+ "keywords": ["PHPUnit", "Extension", "FileSystem"],
+ "require": {
+ "php": "^5.3.6 || ^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.4.3"
+ },
+ "autoload": {
+ "psr-4": {
+ "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."
+ }
+}