summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-04-07 11:35:06 +0200
committerRemi Collet <fedora@famillecollet.com>2016-04-07 11:35:06 +0200
commit6084b177224cbea57eafc9de2bc17fb3a2850818 (patch)
treed62daf0281354e08b788c9917c4832f8ab3ba12e /composer.json
parent9650e43d3cda56bd3c663562d79627bda37e68b2 (diff)
php-phpunit-PHPUnit: 5.3.1
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json74
1 files changed, 74 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..4a77446
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,74 @@
+{
+ "name": "phpunit/phpunit",
+ "description": "The PHP Unit Testing framework.",
+ "type": "library",
+ "keywords": [
+ "phpunit",
+ "xunit",
+ "testing"
+ ],
+ "homepage": "https://phpunit.de/",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "irc": "irc://irc.freenode.net/phpunit"
+ },
+ "require": {
+ "php": ">=5.3.3",
+ "phpunit/php-file-iterator": "~1.4",
+ "phpunit/php-text-template": "~1.2",
+ "phpunit/php-code-coverage": "~2.1",
+ "phpunit/php-timer": ">=1.0.6",
+ "phpunit/phpunit-mock-objects": "~2.3",
+ "phpspec/prophecy": "^1.3.1",
+ "symfony/yaml": "~2.1|~3.0",
+ "sebastian/comparator": "~1.1",
+ "sebastian/diff": "~1.2",
+ "sebastian/environment": "~1.3",
+ "sebastian/exporter": "~1.2",
+ "sebastian/global-state": "~1.0",
+ "sebastian/version": "~1.0",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-reflection": "*",
+ "ext-spl": "*"
+ },
+ "config": {
+ "platform": {
+ "php": "5.3.3"
+ }
+ },
+ "suggest": {
+ "phpunit/php-invoker": "~1.1"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/"
+ ],
+ "files": [
+ "src/Framework/Assert/Functions.php",
+ "tests/_files/CoveredFunction.php"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.8.x-dev"
+ }
+ }
+}