summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-02-07 15:59:59 +0100
committerRemi Collet <remi@remirepo.net>2020-02-07 15:59:59 +0100
commitc4135773799b7088d5a324ac15f7862b2d28679f (patch)
tree7d710214504f330a99555dd83b33e0f9c7a32bea /composer.json
duplicate v8
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json89
1 files changed, 89 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..305fe7a
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,89 @@
+{
+ "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"
+ },
+ "prefer-stable": true,
+ "require": {
+ "php": "^7.2",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "doctrine/instantiator": "^1.2.0",
+ "myclabs/deep-copy": "^1.9.1",
+ "phar-io/manifest": "^1.0.3",
+ "phar-io/version": "^2.0.1",
+ "phpspec/prophecy": "^1.8.1",
+ "phpunit/php-code-coverage": "^7.0.7",
+ "phpunit/php-file-iterator": "^2.0.2",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-timer": "^2.1.2",
+ "sebastian/comparator": "^3.0.2",
+ "sebastian/diff": "^3.0.2",
+ "sebastian/environment": "^4.2.2",
+ "sebastian/exporter": "^3.1.1",
+ "sebastian/global-state": "^3.0.0",
+ "sebastian/object-enumerator": "^3.0.3",
+ "sebastian/resource-operations": "^2.0.1",
+ "sebastian/type": "^1.1.3",
+ "sebastian/version": "^2.0.1"
+ },
+ "require-dev": {
+ "ext-PDO": "*"
+ },
+ "config": {
+ "platform": {
+ "php": "7.2.0"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "suggest": {
+ "phpunit/php-invoker": "^2.0.0",
+ "ext-soap": "*",
+ "ext-xdebug": "*"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/"
+ ],
+ "files": [
+ "src/Framework/Assert/Functions.php",
+ "tests/_files/CoverageNamespacedFunctionTest.php",
+ "tests/_files/CoveredFunction.php",
+ "tests/_files/NamespaceCoveredFunction.php"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "8.5-dev"
+ }
+ }
+}