-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "opensistemas-hub/cert-generator",
"description": "Make Certs (PDF) from templates (PDF)",
"type": "library",
"authors": [
{
"name": "Antonio Cortés (DrZippie)",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"minimum-stability": "dev",
"require": {
"php": ">=7.1.0",
"ramsey/uuid": "^3.8.0",
"setasign/fpdi-fpdf": "^2.0",
"setasign/fpdi-tcpdf": "^2.0"
},
"require-dev": {
"composer/composer": "^1.8",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
"Opensistemas\\CertGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit",
"test-and-coverage": "vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never",
"test-and-generate-coverage": "vendor/bin/phpunit --configuration phpunit.xml --coverage-clover=coverage.xml"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}