-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.35 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
{
"name": "paytic/smartfintech",
"description": "Librarie pentru integrarea sistemului de plati Smart Fintech",
"type": "library",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Smartfintech\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Smartfintech\\Tests\\Fixtures\\": "tests/fixtures",
"Paytic\\Smartfintech\\Tests\\": "tests/src"
}
},
"require": {
"ext-json": "*",
"ext-iconv": "*",
"ext-fileinfo": "*",
"php": "^8",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.1",
"php-http/httplug": "^2.4",
"php-http/cache-plugin": "^1.8.1 || ^2.0",
"php-http/client-common": "^2.7.1",
"php-http/discovery": "^1.14",
"php-http/multipart-stream-builder": "^1.3",
"symfony/serializer": "^6.0|^7.0",
"symfony/property-access": "^6.0|^7.0"
},
"require-dev": {
"symfony/dotenv": "^6.0|^7.0",
"nyholm/psr7": "^1.8",
"symfony/http-client": "^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"php-http/message": "^1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}