-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nekofar/omnipay-zarinpal",
"description": "ZarinPal driver for the Omnipay PHP payment processing library",
"license": "MIT",
"type": "library",
"keywords": [
"omnipay",
"zarinpal",
"gateway",
"merchant",
"payment",
"purchase"
],
"authors": [
{
"name": "Milad Nekofar",
"email": "[email protected]"
}
],
"homepage": "https://github.com/nekofar/omnipay-zarinpal",
"require": {
"php": ">=8.1",
"ext-json": "*",
"http-interop/http-factory-guzzle": "^1.2",
"moneyphp/money": "^4.1",
"omnipay/common": "^3.1",
"php-http/message-factory": "^1.1",
"symfony/http-client": "^6.2",
"symfony/http-foundation": "^6.2"
},
"require-dev": {
"nekofar/dev-tools": "^2.2",
"omnipay/tests": "^4.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-beberlei-assert": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"nekofar/coding-standard": "^2.0",
"slevomat/coding-standard": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Omnipay\\ZarinPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\ZarinPal\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"composer/installers": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"lint": "phpcs",
"test": "phpunit"
}
}