forked from smalot/cups-ipp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 939 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
{
"name": "josh-gaby/cups-ipp",
"description": "CUPS Implementation of IPP - PHP Client API (PHP >= 7.2.5)",
"keywords": ["Printing", "Print", "CUPS", "IPP"],
"type": "library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2.5",
"php-http/client-common": "^2.1",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^2.6.1",
"guzzlehttp/guzzle": "^7.8",
"symfony/yaml": "^3.2||^4.0||^5.0||^6.0||^7.0",
"ext-gettext": "*"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"wapmorgan/file-type-detector": "Detects file type by filename or content and generates correct mimetype."
},
"autoload": {
"psr-4": {
"Smalot\\Cups\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
}
}