diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..80cb2c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# yii console commands +/yii_test +/yii_test.bat + +# phpstorm project files +.idea + +# netbeans project files +nbproject + +# zend studio for eclipse project files +.buildpath +.project +.settings + +# windows thumbnail cache +Thumbs.db + +# composer vendor dir +/vendor/* +!/vendor/blobt/ + +# composer itself is not needed +composer.phar + +# Mac DS_Store Files +.DS_Store + +# phpunit itself is not needed +phpunit.phar + +# local phpunit config +/phpunit.xml + +# vagrant runtime +/.vagrant +vendor.zip +/vagrant diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..5da1a01 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "blobt/luxcore", + "description": "LuxCore Render Controller", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "Blobt\\Luxcore\\": "src/" + } + }, + "authors": [ + { + "name": "blobt", + "email": "380255922@qq.com" + } + ], + "minimum-stability": "dev", + "require": {} +}