-
Notifications
You must be signed in to change notification settings - Fork 86
/
composer.json
48 lines (48 loc) · 1.09 KB
/
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
42
43
44
45
46
47
48
{
"name": "ryanwinchester/netsuite-php",
"description": "NetSuite PHP API wrapper",
"keywords": [ "netsuite", "api", "php" ],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Winchester (fungku)",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-soap": "*",
"ext-SimpleXML": "*",
"ext-openssl": "*",
"paragonie/random_compat": ">=1",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"phpspec/phpspec": ">=5",
"phpunit/phpunit": "^9.5",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"vlucas/phpdotenv": "Provides loading a .env file for obtaining config variables",
"symfony/dotenv": "Provides loading a .env file for obtaining config variables"
},
"autoload": {
"psr-4": {
"NetSuite\\": "src/"
},
"files": [
"src/includes/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"spec\\NetSuite\\": "spec",
"tests\\Netsuite\\": "tests"
}
},
"minimum-stability": "stable",
"scripts": {
"generate": "php utilities/separate_classes.php"
}
}