-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
39 lines (39 loc) · 974 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
{
"name": "smalot/cups-ipp",
"description": "CUPS Implementation of IPP - PHP Client API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sebastien Malot",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"php-http/socket-client": "*",
"php-http/client-common": "*",
"php-http/message": "*",
"guzzlehttp/psr7": "*",
"symfony/yaml": "*"
},
"require-dev": {
"symfony/debug": "*",
"atoum/atoum": "*"
},
"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": {
"Smalot\\Cups\\Tests\\Units\\": "tests/"
}
}
}