From a36125fddad2ec573ddfb390ecd63da0a03147c1 Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Sun, 14 Apr 2024 18:48:37 +0200 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ composer.json | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f45219c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/vendor/ +/.idea \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c667ba3 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "benzine/devtools", + "type": "library", + "authors": [ + { + "name": "Matthew Baggett", + "email": "matthew@baggett.me" + } + ], + "require": { + "brianium/paratest": "^7", + "clue/commander": "^v1.3.0", + "jc21/clitable": "^1.2", + "php-coveralls/php-coveralls": "^2.1", + "ergebnis/phpunit-slow-test-detector": "^2", + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-symfony": "^1", + "phpunit/phpunit": "^10", + "slam/phpstan-extensions": "^6", + "thecodingmachine/phpstan-strict-rules": "^1", + "wyrihaximus/html-compress": "^4.1" + } +}