-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.92 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
59
60
61
62
63
{
"name": "helsingborg-stad/api-volunteer-manager-integration",
"description": "Frontend integration for api-volunteer-manager.",
"type": "wordpress-plugin",
"license": "MIT",
"scripts": {
"test": "./vendor/bin/phpunit --testdox",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testdox",
"minimal": "./vendor/bin/phpunit"
},
"authors": [
{
"name": "Nikolas Ramstedt",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"APIVolunteerManagerIntegration\\": "source/php/"
}
},
"autoload-dev": {
"psr-4": {
"APIVolunteerManagerIntegration\\Tests\\": "source/tests/php"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.1",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/log-implementation": "*",
"php-http/message": "^1.13",
"php-http/discovery": "^1.15",
"php-http/mock-client": "^1.5",
"php-http/curl-client": "^2.2",
"http-interop/http-factory-diactoros": "^1.0",
"apix/log": "^1.2",
"symfony/http-client": "^5.4",
"giggsey/libphonenumber-for-php": "^8.13"
},
"require-dev": {
"brain/monkey": "^2.6",
"codedungeon/phpunit-result-printer": "^0.31.0",
"phpunit/phpunit": "^9.5",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^5.21.1",
"szepeviktor/phpstan-wordpress": "^1.1",
"php-stubs/acf-pro-stubs": "^6.0",
"phpspec/prophecy-phpunit": "^2.0",
"psalm/plugin-phpunit": "^0.18.4"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"version": "3.2.2"
}