forked from Catalin-Ionut/profitshare-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 893 Bytes
/
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
{
"name": "marmureanuweb/profitshare-client",
"type": "library",
"description": "Profitshare modern client to consume the profitshare API.",
"keywords": [
"profitshare",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Catalin Ionut Titov",
"email": "[email protected]",
"homepage": "https://titov.ro/",
"role": "PHP Developer"
},
{
"name": "Marmureanu Andrei",
"email": "[email protected]",
"homepage": "https://marmixsoft.com/",
"role": "PHP Developer"
}
],
"autoload": {
"psr-4": {
"ProfitshareClient\\": "src/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"netresearch/jsonmapper": "^4.2",
"symfony/http-client": "*"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon"
},
"require-dev": {
"phpstan/phpstan": "^1.2.0"
}
}