forked from ATouhou/altapay-php-api
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.4 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": "altapay/api-php",
"license": "MIT",
"description": "AltaPay: Payments less complicated",
"keywords": [
"payment",
"altapay"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"archive": {
"exclude": [
"build.xml",
"phpstan.neon",
"phpunit.xml.dist",
"tests"
]
},
"require": {
"php": "^7.1 || ^8.0",
"ext-date": "*",
"ext-filter": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-Reflection": "*",
"ext-SimpleXML": "*",
"ext-spl": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/options-resolver": "^2.6 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"fzaninotto/faker": "^1.6",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "*",
"phpstan/phpstan-strict-rules": "*",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Altapay\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Altapay\\ApiTest\\": "tests"
}
}
}