-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
58 lines (58 loc) · 1.64 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": "rospdf/pdf-php",
"type": "library",
"description": "The R&OS Pdf class supports the creation of PDF documents without any adiditional modules or extensions.",
"homepage": "https://github.com/rospdf/pdf-php",
"license": "MIT",
"authors": [
{
"name": "Ole Koeckemann",
"email": "[email protected]",
"role": "Project Head / Developer"
},
{
"name": "Lars Olesen",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Sune Jensen",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nicola Asuni",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Wayne Munro",
"email": "[email protected]",
"role": "Founder / Inactive"
}
],
"autoload": {
"files": [
"src/Cpdf.php",
"src/Cezpdf.php"
]
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5",
"phpcompatibility/php-compatibility": "^9.3"
},
"extra": {
"branch-alias": {
"dev-experimental": "0.13.x-dev",
"dev-master": "0.12.x-dev"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}