Skip to content

Commit

Permalink
add LICENSE file and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Gray (Get Net EZ) committed Jun 13, 2019
1 parent 6907773 commit 21d62a2
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 24 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Gregory Gray <[email protected]> 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.
47 changes: 24 additions & 23 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 21d62a2

Please sign in to comment.