-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.53 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.53 KB
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
42
43
44
45
46
47
48
49
50
51
{
"name": "aditto/netsuite-client",
"description": "Framework-agnostic PHP client for NetSuite's SuiteTalk REST API, with an optional Laravel bridge.",
"type": "library",
"license": "MIT",
"keywords": ["netsuite", "suitetalk", "rest", "suiteql", "laravel"],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0",
"psr/simple-cache": "^2.0|^3.0",
"firebase/php-jwt": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"orchestra/testbench": "^9.0|^10.0"
},
"suggest": {
"illuminate/support": "Required to use the Laravel service provider and facade bridge."
},
"autoload": {
"psr-4": {
"Ditto\\NetSuiteClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ditto\\NetSuiteClient\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Ditto\\NetSuiteClient\\Laravel\\NetSuiteClientServiceProvider"
],
"aliases": {
"NetSuite": "Ditto\\NetSuiteClient\\Laravel\\Facades\\NetSuite"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test:sandbox": "phpunit -c phpunit-sandbox.xml.dist"
}
}