-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "antistatique/pricehubble-php-sdk",
"description": "Super-simple, minimum abstraction Pricehubble API v1.x wrapper, in PHP",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/dotenv": "^5.4",
"friendsofphp/php-cs-fixer": "^3.21",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^6.0",
"php-coveralls/php-coveralls": "^2.1",
"php-mock/php-mock-phpunit": "^2.6",
"vimeo/psalm": "^4.10",
"phpunit/php-code-coverage": "^9"
},
"autoload": {
"psr-4": {
"Antistatique\\Pricehubble\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Antistatique\\Pricehubble\\Tests\\": "tests/"
}
},
"homepage": "https://github.com/antistatique/pricehubble-php-sdk",
"authors": [
{
"name": "Antistatique SA",
"email": "info@antistatique.net",
"homepage": "https://www.antistatique.net",
"role": "Sponsor"
},
{
"name": "Kevin Wenger",
"email": "contact@kevin-wenger.ch",
"homepage": "http://kevin-wenger.ch",
"role": "Author & Maintainer"
}
]
}