-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
executable file
·58 lines (58 loc) · 1.43 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
{
"name": "gravitymedia/ghostscript",
"description": "Ghostscript is an object oriented Ghostscript binary wrapper for PHP.",
"keywords": [
"gravitymedia",
"ghostscript"
],
"homepage": "https://github.com/GravityMedia/Ghostscript",
"license": "MIT",
"authors": [
{
"name": "Daniel Schröder",
"email": "[email protected]",
"homepage": "https://github.com/pCoLaSD",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"symfony/process": "^5.0|^6.0|^7.0"
},
"require-dev": {
"phing/phing": "^2.14",
"phpunit/phpunit": "^9.5|^10.0|^11.0",
"scrutinizer/ocular": "^1.3",
"symfony/finder": "^5.0|^6.0|^7.0",
"sebastian/comparator": ">=1.2.3"
},
"autoload": {
"psr-4": {
"GravityMedia\\Ghostscript\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GravityMedia\\GhostscriptTest\\": "tests/src/"
}
},
"scripts": {
"test": "php vendor/bin/phing test",
"doc": "php vendor/bin/phing doc"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"archive": {
"exclude": [
"/.*",
"/*.php",
"/build.*",
"/composer.*",
"/phpunit.*",
"/tests"
]
}
}