-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (47 loc) · 1.69 KB
/
composer.json
File metadata and controls
49 lines (47 loc) · 1.69 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
{
"name": "neubert/evalanche-interface",
"description": "This interface is a consistent wrapper arround the SOAP API of Evalanche.",
"keywords": ["evalanche", "interface", "connector", "sc-networks", "scn"],
"license": "MIT",
"homepage": "https://github.com/danielneubert/evalanche-interface",
"support": {
"issues": "https://github.com/danielneubert/evalanche-interface/issues",
"source": "https://github.com/danielneubert/evalanche-interface"
},
"authors": [
{
"name": "Daniel Neubert",
"email": "git@danielneubert.com"
}
],
"require": {
"scn/evalanche-soap-api-connector": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9",
"sempro/phpunit-pretty-print": "^1.3"
},
"autoload": {
"psr-4": {
"Neubert\\EvalancheInterface\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neubert\\EvalancheInterface\\Tests\\": "tests/"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit --testsuite connection",
"test--all": "./vendor/bin/phpunit --testsuite all",
"test--c-a": "./vendor/bin/phpunit --testsuite connector--article",
"test--c-at": "./vendor/bin/phpunit --testsuite connector--article-type",
"test--c-ct": "./vendor/bin/phpunit --testsuite connector--container-type",
"test--c-f": "./vendor/bin/phpunit --testsuite connector--folder",
"test--b-a": "./vendor/bin/phpunit --testsuite behaviors--attribute",
"test--b-ag": "./vendor/bin/phpunit --testsuite behaviors--attribute-group"
}
}