-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "laurens-lyceum/mws-client-php",
"type": "library",
"version": "0.1.0",
"description": "PHP client library for Magister's eccentric Web Service interface.",
"keywords": ["magister", "mws"],
"license": "LGPL-3.0-only",
"homepage": "https://github.com/Laurens-Lyceum/mws-client-php",
"support": {
"source": "https://github.com/Laurens-Lyceum/mws-client-php",
"issues": "https://github.com/Laurens-Lyceum/mws-client-php/issues"
},
"authors": [
{
"name": "Ravi van Rooijen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LaurensLyceum\\MWS\\Client\\": "src/"
}
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-filter": "*",
"ext-mbstring": "*",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"pestphp/pest": "^3.5"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}