From f8146b47c53d77be12933e6aaf6cdcb9b48f6fd4 Mon Sep 17 00:00:00 2001 From: Aldarien Date: Mon, 15 Mar 2021 17:53:31 -0300 Subject: [PATCH] Composer file --- .gitignore | 1 + composer.json | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57872d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..cbc6053 --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "provm/controller", + "description": "Controller traits", + "type": "library", + "require-dev": { + "phpunit/phpunit": "^8.5" + }, + "license": "MIT", + "authors": [ + { + "name": "Aldarien", + "email": "aldarien85@gmail.com" + } + ], + "require": {}, + "autoload": { + "psr-4": { + "ProVM\\Common\\": "common" + } + } +}