diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4f9b54a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Gregory Gray and contributors + +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. diff --git a/composer.json b/composer.json index 2c37e6d..e18547e 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,30 @@ { - "name": "usulix/laravel-netsuite", - "description": "A laravel5 wrapper around ryanwinchester/netsuite-php", - "require": { + "name": "usulix/laravel-netsuite", + "description": "A laravel5 wrapper around ryanwinchester/netsuite-php", + "version": "1.0.0", + "require": { "laravel/framework": "^5", "ryanwinchester/netsuite-php": "^2016.1|^v2017|^v2018", "guzzlehttp/guzzle": "^6.2" }, - "require-dev": { - "roave/security-advisories": "dev-master" - }, - "replace": { - "paragonie/random_compat": "*" - }, - "autoload": { - "psr-4": { - "Usulix\\NetSuite\\": "src" - } - }, - "license": "MIT", - "extra": { - "laravel": { - "providers": [ - "Usulix\\NetSuite\\Providers\\NetSuiteServiceProvider", - "Usulix\\NetSuite\\Providers\\NetSuiteApiProvider" - ] - } - } + "require-dev": { + "roave/security-advisories": "dev-master" + }, + "replace": { + "paragonie/random_compat": "*" + }, + "autoload": { + "psr-4": { + "Usulix\\NetSuite\\": "src" + } + }, + "license": "MIT", + "extra": { + "laravel": { + "providers": [ + "Usulix\\NetSuite\\Providers\\NetSuiteServiceProvider", + "Usulix\\NetSuite\\Providers\\NetSuiteApiProvider" + ] + } + } } diff --git a/readme.md b/readme.md index ea283b4..55381c7 100644 --- a/readme.md +++ b/readme.md @@ -12,7 +12,7 @@ API for targeting NetSuite RESTlets Will use the latest `ryanwinchester/netsuite-php` version up to `v2018.2.0` ``` - composer require usulix/laravel-netsuite:dev-master + composer require usulix/laravel-netsuite ``` if an older version say `v2017.1.1` or `v2016.2.0` is required ```