forked from netsuitephp/netsuite-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 894 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "netsuitephp/netsuite-laravel",
"description": "NetSuite PHP laravel provider wrapper",
"keywords": [ "netsuite", "api", "php", "laravel" ],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "James Gilliland (neclimdul)",
"email": "[email protected]"
},
{
"name": "Justin Rebelo (jrebs)",
"homepage": "https://rebelo.dev/"
}
],
"require": {
"php": "^7.2.5|^8.0",
"ryanwinchester/netsuite-php": "*"
},
"require-dev": {
"illuminate/config": "^7|^8",
"illuminate/support": "^7|^8"
},
"autoload": {
"psr-4": {
"NetSuite\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"NetSuite\\Providers\\NetSuiteServiceProvider"
],
"aliases": {
"NetSuite": "NetSuite\\Facades\\NetSuite"
}
}
}
}