-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 932 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
{
"name": "actualreports/pdfgeneratorapi-php",
"description": "PHP API wrapper for pdfgeneratorapi.com",
"homepage": "https://pdfgeneratorapi.com",
"keywords": ["pdf generator"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tanel Tähepõld",
"email": "taneltahepold@gmail.com",
"homepage": "https://github.com/tanelt"
}
],
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3 || ^8.0",
"guzzlehttp/guzzle": "~7.0"
},
"require-dev": {
"phpunit/phpunit": "~6.4 || dev-master"
},
"autoload": {
"psr-4": {
"ActualReports\\PDFGeneratorAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ActualReports\\PDFGeneratorAPI\\Tests\\": "tests/"
}
}
}