forked from doitonlinemedia/snelstart-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 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
{
"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.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|~7.0",
"moneyphp/money": "^3.0",
"myclabs/php-enum": "^1.6",
"psr/cache": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"ramsey/uuid": "^3.7|^4.0"
},
"require-dev": {
"phpstan/phpstan": "^0.10.2",
"phpunit/phpunit": "^7.3"
},
"suggest": {
"symfony/cache": "Caching made a little easier. Comes in handy for access tokens."
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SnelstartPHP\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
}
}