summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-02-17 17:23:45 +0100
committerRemi Collet <fedora@famillecollet.com>2017-02-17 17:23:45 +0100
commitf5fe6edc1bfb8ad4bd8a25df3cb7dc029fdcd592 (patch)
tree5577537cd10c8cd44a4433e0497889f90d6153aa /composer.json
parentc113e48d8776866d0da1fcd88d9f7af9914289ed (diff)
php-hamcrest: add PHP 7 patchHEADmaster
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": "*"
+ }
+}