-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: improved test execution and validation
- Loading branch information
1 parent
84aa1ff
commit d1fce0e
Showing
6 changed files
with
97 additions
and
674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,74 @@ | ||
{ | ||
"name": "lsnepomuceno/laravel-a1-pdf-sign", | ||
"description": "Sign PDF files with valid x509 certificates", | ||
"license": "MIT", | ||
"type": "library", | ||
"homepage": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign", | ||
"support": { | ||
"issues": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign/issues", | ||
"source": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign" | ||
}, | ||
"keywords": [ | ||
"a1", | ||
"sign pdf", | ||
"sign", | ||
"x509", | ||
"laravel", | ||
"certificate", | ||
"icp brasil" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Lucas Nepomuceno", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/lsnepomuceno" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"ext-gd": "*", | ||
"ext-json": "*", | ||
"ext-fileinfo": "*", | ||
"ext-mbstring": "*", | ||
"ext-openssl": "*", | ||
"illuminate/support": "^9 || ^10", | ||
"illuminate/encryption": "^9 || ^10", | ||
"illuminate/http": "^9 || ^10", | ||
"tecnickcom/tc-lib-pdf": "^8", | ||
"tecnickcom/tcpdf": "6.4.* || 6.6.*", | ||
"setasign/fpdi": "^2.3", | ||
"symfony/process": "^6", | ||
"intervention/image": "^2.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LSNepomuceno\\LaravelA1PdfSign\\": "./src" | ||
}, | ||
"files": [ | ||
"src/Helpers/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"LSNepomuceno\\LaravelA1PdfSign\\Tests\\": "./tests" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"LSNepomuceno\\LaravelA1PdfSign\\LaravelA1PdfSignServiceProvider" | ||
] | ||
} | ||
}, | ||
"suggest": { | ||
"ext-gd": "To use GD library based image processing.", | ||
"ext-imagick": "To use Imagick based image processing." | ||
"name": "lsnepomuceno/laravel-a1-pdf-sign", | ||
"description": "Sign PDF files with valid x509 certificates", | ||
"license": "MIT", | ||
"type": "library", | ||
"homepage": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign", | ||
"support": { | ||
"issues": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign/issues", | ||
"source": "https://github.com/lsnepomuceno/laravel-a1-pdf-sign" | ||
}, | ||
"keywords": [ | ||
"a1", | ||
"sign pdf", | ||
"sign", | ||
"x509", | ||
"laravel", | ||
"certificate", | ||
"icp brasil" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Lucas Nepomuceno", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/lsnepomuceno" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"ext-gd": "*", | ||
"ext-json": "*", | ||
"ext-fileinfo": "*", | ||
"ext-mbstring": "*", | ||
"ext-openssl": "*", | ||
"illuminate/support": "^9 || ^10", | ||
"illuminate/encryption": "^9 || ^10", | ||
"illuminate/http": "^9 || ^10", | ||
"tecnickcom/tc-lib-pdf": "^8", | ||
"tecnickcom/tcpdf": "6.4.* || 6.6.*", | ||
"setasign/fpdi": "^2.3", | ||
"symfony/process": "^6", | ||
"intervention/image": "^2.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LSNepomuceno\\LaravelA1PdfSign\\": "./src" | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^7 || ^8", | ||
"nunomaduro/collision": "^6 || ^7", | ||
"phpmd/phpmd": "^2.11" | ||
"files": [ | ||
"src/Helpers/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"LSNepomuceno\\LaravelA1PdfSign\\Tests\\": "./tests" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/testbench package:test" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"LSNepomuceno\\LaravelA1PdfSign\\LaravelA1PdfSignServiceProvider" | ||
] | ||
} | ||
}, | ||
"suggest": { | ||
"ext-gd": "To use GD library based image processing.", | ||
"ext-imagick": "To use Imagick based image processing." | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^8", | ||
"nunomaduro/collision": "^7" | ||
} | ||
} |
Oops, something went wrong.