From 8b2440ce498bc993f2c70217ff36f574b9c192f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Perr=C3=A9al?= <guillaume.perreal@inrae.fr> Date: Thu, 2 Jul 2020 14:43:52 +0200 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9e=20la=20premi=C3=A8re=20version.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ composer.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4fbb073 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/vendor/ +/composer.lock diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..21beb53 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "irstea/dev-pack", + "description": "Méta-package qui regroupe les différents outils que nous utilisons en développement.", + "type": "metapackage", + "license": "MIT", + "authors": [ + { + "name": "Guillaume Perréal", + "email": "guillaume.perreal@inrae.fr" + } + ], + "require": { + "deployer/deployer": "@stable", + "hirak/prestissimo": "@stable", + "irstea/composer-require-checker-shim": "@stable", + "irstea/pcov-clobber-plugin": "@stable", + "irstea/php-cs-fixer-config": "@stable", + "irstea/phpcpd-shim": "@stable", + "irstea/phploc-shim": "@stable", + "irstea/phpmd-config": "@stable", + "irstea/phpmd-shim": "@stable", + "irstea/phpstan-config": "@stable", + "php-parallel-lint/php-parallel-lint": "@stable", + "phpunit/phpunit": "@stable", + "roave/security-advisories": "dev-master", + "sensiolabs/security-checker": "@stable" + } +} -- GitLab