summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-01-22 09:37:52 +0100
committerRemi Collet <remi@remirepo.net>2018-01-22 09:37:52 +0100
commitca32fba3bc98387f21efb37bf47a72789b084118 (patch)
tree19816827f69d90b1748255c7d040edf89c298115 /composer.json
duplicate php-hamcrest
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..a1b48c1
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,32 @@
+{
+ "name": "hamcrest/hamcrest-php",
+ "type": "library",
+ "description": "This is the PHP port of Hamcrest Matchers",
+ "keywords": ["test"],
+ "license": "BSD",
+ "authors": [
+ ],
+
+ "autoload": {
+ "classmap": ["hamcrest"],
+ "files": ["hamcrest/Hamcrest.php"]
+ },
+ "autoload-dev": {
+ "classmap": ["tests", "generator"]
+ },
+
+ "require": {
+ "php": ">=5.3.2"
+ },
+
+ "require-dev": {
+ "satooshi/php-coveralls": "dev-master",
+ "phpunit/php-file-iterator": "1.3.3"
+ },
+
+ "replace": {
+ "kodova/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "cordoval/hamcrest-php": "*"
+ }
+}