diff --git a/.gitignore b/.gitignore index 2472d15..75bda61 100644 --- a/.gitignore +++ b/.gitignore @@ -93,4 +93,6 @@ fabric.properties .idea/**/markdown-navigator/ # End of https://www.gitignore.io/api/phpstorm -todo.txt \ No newline at end of file +todo.txt +/vendor +composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..5c9c2e7 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "shock95x/auctionhouse", + "description": "Feature-packed AuctionHouse plugin for PocketMine-MP", + "type": "project", + "license": "GPL-3.0-or-later", + "authors": [ + { + "name": "Shock95x" + } + ], + "require": { + "pocketmine/pocketmine-mp": "^3.0" + }, + "autoload": { + "psr-4": { + "": "./src" + } + } +} \ No newline at end of file