forked from netsuitephp/netsuite-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1013 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
42
43
{
"name": "silvertipsoftware/netsuite-php",
"description": "NetSuite PHP API wrapper",
"keywords": [ "netsuite", "api", "php" ],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Winchester (fungku)",
"email": "fungku@gmail.com"
},
{
"name": "Silvertip Software Inc",
"email": "info@silvertipsoftware.com"
}
],
"require": {
"php": ">=5.6",
"ext-soap": "*",
"ext-SimpleXML": "*",
"ext-openssl": "*",
"paragonie/random_compat": ">=1"
},
"require-dev": {
"phpspec/phpspec": ">=5"
},
"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"
]
},
"minimum-stability": "stable",
"scripts": {
"generate": "php utilities/separate_classes.php"
}
}