-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.33 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "payos/payos",
"version": "2.0.0",
"type": "library",
"description": "A payOS package for PHP",
"license": "MIT",
"keywords": [
"payos",
"payos package",
"payment"
],
"autoload": {
"psr-4": {
"PayOS\\": "src/"
}
},
"authors": [
{
"name": "payos",
"email": "support@payos.vn",
"homepage": "https://payos.vn"
}
],
"require": {
"php": ">=8.2",
"psr/log": "^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr-discovery/http-client-implementations": "^1.0",
"psr-discovery/http-factory-implementations": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^2.1.30",
"friendsofphp/php-cs-fixer": "^3.88.2",
"guzzlehttp/guzzle": "^7.10",
"monolog/monolog": "^3.9"
},
"scripts": {
"sync-version": "php scripts/sync-version.php",
"lint": "@lint:phpstan",
"lint:phpstan": "phpstan analyse --configuration=phpstan.neon",
"format": "php-cs-fixer fix --config=.php-cs-fixer.php",
"format:check": "php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff",
"test": "phpunit",
"check": [
"@lint",
"@format:check",
"@test"
],
"post-update-cmd": "@sync-version",
"post-install-cmd": "@sync-version"
}
}