-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.16 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
{
"name": "interledger/open-payments-php",
"description": "Open Payments PHP Library",
"author": "Interledger Tech Team <[email protected]>",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"OpenPayments\\": "lib/"
},
"files": [
"lib/Utils/HttpSignature.php",
"lib/Enums/Actions.php"
]
},
"require": {
"php": ">=8.3",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.9",
"nyholm/psr7": "^1.8",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1",
"monolog/monolog": "^3.8",
"bakame/http-structured-fields": "^1.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"jane-php/open-api-3": "^7.8",
"squizlabs/php_codesniffer": "^3.11",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.4"
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"lint": "php-cs-fixer fix --dry-run",
"fix": "php-cs-fixer fix"
}
}