From 9688023bf6660372c6121c8a4152e72847bcf3c5 Mon Sep 17 00:00:00 2001 From: Asvae Date: Thu, 14 Jul 2016 21:27:28 +0300 Subject: [PATCH] Add composer boilerplate --- .gitignore | 0 LICENSE.txt | 19 +++++++++++++++++++ changelog.md | 3 +++ composer.json | 20 ++++++++++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt create mode 100644 changelog.md create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..015d8c2 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (C) 2016 Yauheni Prakopchyk + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..40d9ce2 --- /dev/null +++ b/changelog.md @@ -0,0 +1,3 @@ +# Changelog + +## 1.0.0 (14.07.2016) Initial commit. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..210ced0 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "asvae/laravel-api-tester", + "description": "Api tester for Laravel Framework", + "keywords": ["laravel", "api", "debug"], + "license": "MIT", + "authors": [ + { + "name": "Yauheni Prakopchyk", + "email": "ontrew@gmail.com" + } + ], + "require": { + "php": ">=5.4.0" + }, + "autoload": { + "psr-4": { + "Asvae\\ApiTester\\": "src/" + } + } +} \ No newline at end of file