-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"name": "mooore/ecurring-api-php",
"description": "eCurring API client library for PHP.",
"keywords": [
"ecurring",
"mollie",
"subscriptions"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mooore Digital",
"email": "info@mooore.nl"
},
{
"name": "Timon de Groot",
"email": "timon@mooore.nl"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"composer/ca-bundle": "^1.1",
"guzzlehttp/guzzle": "^6.3|^7.0.1"
},
"autoload": {
"psr-4": {
"Mooore\\eCurring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mooore\\eCurring\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpstan/phpstan": "^0.12.0",
"phpro/grumphp": "^0.19.0",
"fzaninotto/faker": "^1.8",
"squizlabs/php_codesniffer": "^3.5"
}
}