-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.42 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
{
"name": "risscsolutions/printformer-php-sdk",
"description": "SDK for the printformer API",
"keywords": [
"printformer",
"web2print"
],
"type": "library",
"license": [
"MIT"
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"lcobucci/jwt": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "9.6.8",
"nyholm/nsa": "^1.3",
"jetbrains/phpstorm-attributes": "^1.0",
"infection/infection": "^0.26.16"
},
"autoload": {
"psr-4": {
"Rissc\\Printformer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rissc\\Printformer\\Tests\\": "tests/"
}
},
"scripts": {
"local-tests": [
"docker build . -t printformer-php-sdk",
"docker run --rm -v ${PWD}:/var/www/html printformer-php-sdk bash -c \"php composer.phar du && php vendor/bin/phpunit --configuration phpunit.xml\""
],
"local-coverage": [
"docker run --rm -v ${PWD}:/var/www/html printformer-php-sdk bash -c \"php composer.phar du && XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-html coverage --configuration phpunit.xml\""
],
"doc": [
"docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3 phpDocumentor --config .phpdoc/phpdoc.xml"
]
},
"authors": [
{
"name": "Luca Perna",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
}
}