-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 958 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 958 Bytes
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
{
"name": "adminweb/websheet-php",
"license": "proprietary",
"description": "Websheet Sdk for generate pdf and send it for email.",
"type": "library",
"keywords": [
"pdf",
"email",
"api"
],
"homepage": "https://www.websheet.tech/",
"readme": "Readme.md",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"WebSheet\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebSheetTest\\Sdk\\": "tests/"
}
},
"authors": [
{
"name": "Igor C. de Paula",
"email": "igordepaula@adminweb.com.br"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5"
},
"scripts": {
"test": "./vendor/phpunit/phpunit/phpunit"
}
}