-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.22 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
49
50
51
52
53
54
55
56
57
58
{
"name": "php-sap/saprfc-koucky",
"description": "PHP/SAP implementation for Kouckys legacy saprfc module. See https://php-sap.github.io for details.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gregor J.",
"email": "[email protected]",
"role": "developer"
}
],
"homepage": "https://php-sap.github.io",
"keywords": [
"phpsap",
"php-sap",
"sap",
"saprfc",
"sap-rfc",
"rfc",
"remote function call",
"koucky"
],
"conflict": {
"php-sap/saprfc-harding": "*",
"php-sap/saprfc-kralik": "*",
"kba-team/php-sapnwrfc-harding": "*",
"kba-team/php-sapnwrfc-kralik": "*"
},
"minimum-stability": "stable",
"require": {
"php": "^5.5",
"ext-saprfc": "*",
"php-sap/interfaces": "^2.0",
"php-sap/common": "^3.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^4.8",
"php-sap/integration-tests": "^3.0"
},
"autoload": {
"psr-4": {
"phpsap\\saprfc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\phpsap\\saprfc\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"tests": "Run all unit tests."
}
}