-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.39 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.39 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
56
57
{
"name": "netfantom/robokassa-api",
"type": "library",
"description": "Robokassa Api for PHP 8.1",
"keywords": [
"robokassa",
"api",
"payment"
],
"license": "MIT",
"authors": [
{
"name": "Igor Fedorov",
"role": "Original Developer"
},
{
"name": "Maksim Ego",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"netFantom\\RobokassaApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 | ^2.0",
"psr/http-message-implementation": "^1.0 | ^2.0"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"phpunit/phpunit": "^10.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symfony/http-client": "^6.3",
"vimeo/psalm": "^5.12"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}