-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sasa-b/monri-standalone",
"description": "Monri Payment Gateway HTTP Client",
"minimum-stability": "stable",
"license": "Apache-2.0",
"keywords": ["sdk", "payment-gateway", "monri", "http", "php"],
"version": "0.1.0",
"authors": [
{
"name": "sasablagojevic",
"email": "email@example.com"
}
],
"autoload": {
"psr-4": {
"Sco\\Monri\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Sco\\Monri\\Tests\\": "tests/"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": ">=8.2",
"symfony/http-client": "^7.0",
"webmozart/assert": "^1.10",
"ext-json": "*",
"symfony/serializer": "^7.0",
"symfony/property-access": "^7.0"
},
"scripts": {
"code:fixer": [
"vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"phpstan:run": [
"vendor/bin/phpstan analyse --configuration=tools/phpstan/phpstan.neon.dist --xdebug --memory-limit 2G"
],
"code:quality": [
"@code:fixer",
"@phpstan:run"
]
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"friendsofphp/php-cs-fixer": "^3.48",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.19",
"symfony/process": "^7.0",
"symfony/http-foundation": "^7.0"
}
}