-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "bakame/pdftotext",
"description": "A wrapper around pdftotext.",
"homepage": "https://github.com/bakame-php/pdftotext",
"license": "MIT",
"require": {
"symfony/process": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.11.16",
"phpstan/phpstan-strict-rules": "^0.11.1",
"phpstan/phpstan-phpunit": "^0.11.2"
},
"autoload": {
"psr-4": {
"Bakame\\Pdftotext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BakameTest\\Pdftotext\\": "tests/"
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"phpstan-src": "phpstan analyse -l max -c phpstan.src.neon src --ansi",
"phpstan-tests": "phpstan analyse -l max -c phpstan.tests.neon tests --ansi",
"phpstan": [
"@phpstan-src",
"@phpstan-tests"
],
"phpunit": "phpunit --coverage-text",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpstan": "Runs complete codebase static analysis",
"phpstan-src": "Runs source code static analysis",
"phpstan-test": "Runs test suite static analysis",
"phpunit": "Runs unit and functional testing",
"test": "Runs full test suite"
}
}