-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
96 lines (96 loc) · 2.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "hiqdev/php-billing",
"type": "library",
"description": "PHP Billing Library",
"keywords": [
"php",
"billing",
"tariff plan"
],
"homepage": "https://github.com/hiqdev/php-billing",
"license": "BSD-3-Clause",
"support": {
"email": "[email protected]",
"source": "https://github.com/hiqdev/php-billing",
"issues": "https://github.com/hiqdev/php-billing/issues",
"wiki": "https://github.com/hiqdev/php-billing/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "[email protected]",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "[email protected]",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"php": "^8.3",
"moneyphp/money": "^3.0 | ^4.0",
"hiqdev/php-units": "dev-master",
"psr/simple-cache": "^1.0",
"cache/array-adapter": "^1.2"
},
"require-dev": {
"ext-intl": "*",
"behat/behat": "^3.4.3",
"phpunit/phpunit": "^10.0.0",
"league/event": "^2.1",
"hoa/ruler": "^2.17",
"hiqdev/hidev": "dev-master",
"hiqdev/hidev-php": "dev-master",
"hiqdev/hidev-behat": "dev-master",
"hiqdev/hidev-hiqdev": "dev-master",
"hiqdev/php-data-mapper": "dev-master",
"vimeo/psalm": "^5.0",
"cache/array-adapter": "*",
"matthiasnoback/behat-expect-exception": "^v0.3.0"
},
"suggest": {
"ext-intl": "intl extension is required for formula support",
"hiqdev/hoa-ruler": "~1.0",
"hiqdev/hoa-compiler": "~1.0",
"hiqdev/hoa-iterator": "~1.0",
"hiqdev/hoa-protocol": "~1.0",
"hiqdev/hoa-stream": "~1.0",
"hiqdev/hoa-file": "~1.0",
"league/event": "required for event-rich billing"
},
"autoload": {
"psr-4": {
"hiqdev\\php\\billing\\": "src",
"hiqdev\\php\\billing\\tests\\": "tests"
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"yiisoft/composer-config-plugin": true
}
}
}