-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.46 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
{
"name": "vatly/vatly-api-php",
"description": "Vatly API client for PHP",
"keywords": [
"vatly",
"vatly-api-php",
"php",
"billing",
"payments",
"creditcard",
"iDEAL",
"PayPal",
"Apple Pay"
],
"homepage": "https://www.vatly.com",
"license": "MIT",
"authors": [
{
"name": "Sander van Hooft",
"email": "info@sandervanhooft.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"composer/ca-bundle": "^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"guzzlehttp/guzzle": "^7.5",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"spatie/ray": "^1.19"
},
"autoload": {
"psr-4": {
"Vatly\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vatly\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "vendor/bin/phpstan analyse src tests"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}