-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 835 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 835 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
{
"name": "weisl/hellocash-php-sdk",
"description": "SDK to simplify the developer experience when working with the Hellocash API.",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Kilian Weisl",
"email": "kilian@weisl.cc",
"homepage": "https://weisl.cc"
}
],
"require": {
"php": ">=8.1",
"sammyjo20/saloon": "^1.4",
"illuminate/collections": "^9.34"
},
"autoload": {
"psr-4": {
"Weisl\\HellocashPhpSdk\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}