summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..80676db
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,38 @@
+{
+ "name": "sanmai/phpunit-legacy-adapter",
+ "type": "library",
+ "description": "PHPUnit Legacy Versions Adapter",
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "Alexey Kopytko",
+ "email": "alexey@kopytko.com"
+ }
+ ],
+ "require": {
+ "phpunit/phpunit": "^7 || ^8 || ^9"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5.20 || ^8.5.9 || ^9.4.3",
+ "friendsofphp/php-cs-fixer": "^2.16"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "8.x-dev",
+ "dev-legacy": "6.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "LegacyPHPUnit\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Tests\\LegacyPHPUnit\\": "tests/"
+ }
+ }
+}