-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "mirakl/sdk-php-shop",
"description": "Mirakl provides a PHP SDK that wraps the Mirakl REST APIs in a lightweight library. This enables you to develop a fast, flexible and custom integration for your existing e-commerce solution.",
"type": "library",
"version": "1.21.0",
"license": "proprietary",
"authors": [
{
"name": "Mirakl",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Mirakl\\": "src/Mirakl/"
},
"files": [
"src/Mirakl/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Mirakl\\Tests\\": "tests/Mirakl/"
}
},
"require": {
"php": ">=8.1.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "~6.0 || ~7.0",
"guzzlehttp/psr7": "~1.7 || ~2.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"squizlabs/php_codesniffer": "^3.10",
"friendsofphp/php-cs-fixer": "^3.9"
}
}