-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "be-lenka/exponea-api",
"description": "PHP SDK for Exponea API",
"type": "library",
"require": {
"php" : "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy": "^1.8",
"squizlabs/php_codesniffer": "^3.4",
"sirbrillig/phpcs-variable-analysis": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"belenka\\ExponeaApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"belenka\\ExponeaApiTest\\": "tests/"
}
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "Łukasz Rutkowski",
"email": "lukasz.rutkowski@tauceti.email"
},
{
"name": "BeLenka Dev",
"email": "dev+github@belenka.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}