forked from thecodingmachine/gotenberg-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "thecodingmachine/gotenberg-php-client",
"description": "A client for sending files to a Gotenberg API",
"keywords" : [
"Gotenberg",
"API",
"client",
"PDF",
"Office",
"Markdown",
"HTML",
"Word",
"PowerPoint"
],
"homepage" : "https://github.com/thecodingmachine/gotenberg-php-client",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "Julien Neuhart",
"email" : "[email protected]",
"homepage" : "https://github.com/gulien"
}
],
"require" : {
"php" : ">=7.1",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": ">=1.0",
"php-http/discovery": "^1.0",
"guzzlehttp/psr7": "^1.4.2",
"php-http/message": "^1.0",
"thecodingmachine/safe": "^0.1.8"
},
"require-dev" : {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.10.5",
"thecodingmachine/phpstan-safe-rule": "^0.1.0",
"thecodingmachine/phpstan-strict-rules": "^0.10.7",
"php-http/mock-client": "^1.0",
"php-http/guzzle6-adapter": "^1.1"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\Gotenberg\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TheCodingMachine\\Gotenberg\\" : "tests/"
}
},
"scripts": {
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"phpunit": "phpunit --configuration phpunit.xml.dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}