-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "prinsfrank/pdfparser",
"description": "A low-memory, fast and maintainable conforming pdfparser to read PDF files",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PrinsFrank\\PdfParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\PdfParser\\Tests\\": "tests/"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-zlib": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2",
"phpunit/phpunit": "^11.5",
"prinsfrank/pdf-samples": "^0.0.4"
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse --memory-limit 4G -v",
"unit": "phpunit --testsuite=Unit",
"feature": "phpunit --testsuite=Feature"
},
"config": {
"sort-packages": true
}
}