-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.14 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
{
"name": "scoutnet/sn-webservice",
"description" : "This class is needed to comunicate with the scoutnet.de server.",
"homepage": "https://github.com/scoutnet/plugins.sn_webservice",
"authors": [
{
"name": "Stefan Horst",
"email": "[email protected]",
"homepage": "https://www.scoutnet.de",
"role": "Developer"
}
],
"license": ["GPL-2.0-or-later"],
"keywords": ["ScoutNet", "Pfadfinder", "ScoutNet API"],
"support": {
"issues": "https://github.com/scoutnet/plugins.sn_webservice/issues"
},
"require": {
"ext-openssl": "*"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.5",
"phpspec/prophecy": "~1.18",
"phpspec/prophecy-phpunit": "~2.1",
"phpstan/phpstan": "^1.7.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"typo3/coding-standards": "^0.7.1",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"ScoutNet\\Api\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ScoutNet\\Api\\Tests\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev",
"dev-v1.0": "1.0.x-dev"
}
}
}