-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.16 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
{
"name": "th3mouk/vatlayer",
"type": "library",
"description": "PHP wrapper of vatlayer.com",
"license": "MIT",
"authors": [
{
"name": "Jérémy Marodon",
"email": "marodon.jeremy@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"fig/http-message-util": "^1.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"webmozart/assert": "^1.9.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"nyholm/psr7": "^1.3",
"pepakriz/phpstan-exception-rules": "^0.11.2",
"pestphp/pest": "^v0.3.16",
"php-http/mock-client": "^1.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^0.12.64",
"phpstan/phpstan-webmozart-assert": "^0.12.8",
"phpunit/phpunit": "^9.5.0",
"symplify/phpstan-rules": "^8.3.48",
"vimeo/psalm": "^4.3.1",
"youdot/coding-standard": "^3.1"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Th3Mouk\\VatLayer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Th3Mouk\\VatLayer\\Tests\\": "tests/"
}
}
}