-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.25 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.25 KB
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
{
"name": "danrossiter/binary-compound-file",
"description": "Pure PHP library for reading Microsoft Compound Binary File Format (CFBF/OLE) documents. Supports both little-endian and big-endian files with stream wrapper interface.",
"type": "library",
"keywords": ["compound-file", "ole", "cfbf", "binary", "doc", "xls", "ppt", "structured-storage"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Dan Rossiter",
"email": "dan@rossiters.org"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"DanRossiter\\BinaryCompoundFile\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DanRossiter\\BinaryCompoundFile\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src tests --level=8",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
},
"minimum-stability": "stable",
"prefer-stable": true
}