forked from ihabunek/pdf417-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 825 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
{
"name": "leongrdic/pdf417",
"description": "PDF417 barcode generation PHP library",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-bcmath": "*",
"intervention/image": "^2.7"
},
"require-dev": {
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^3.16",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Le\\PDF417\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Le\\PDF417\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix --config=.php_cs.dist.php",
"test": "./vendor/bin/phpunit --testdox --colors",
"test-coverage": "./vendor/bin/phpunit --coverage-text"
}
}