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" + } + } +}