-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
56 lines (56 loc) · 1.39 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
{
"name":"iwd-nl/snelstart-php",
"license": "GPL-3.0-or-later",
"type": "library",
"description": "Snelstart API toegepast in PHP",
"homepage": "https://github.com/iwd-nl/snelstart-php",
"keywords": [
"snelstart"
],
"authors": [
{
"name": "IntoWebDevelopment",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.4|^7.0",
"moneyphp/money": "^3.0|^4.0",
"myclabs/php-enum": "^1.6",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^3.8|^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^8.5.23",
"vimeo/psalm": "^4.0|^5.0"
},
"suggest": {
"psr/cache": "Caching made a little easier. Useful for access tokens."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"files": [ "src/deprecated.php" ],
"psr-4": {
"SnelstartPHP\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"SnelstartPHP\\Tests\\": "tests/"
}
}
}