-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 829 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 829 Bytes
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
{
"name": "ecourtial/php-bmp-parser",
"keywords": ["php", "bmp"],
"description": "A library to parse Windows Bitmap files",
"license": "MIT",
"authors": [
{
"name": "Eric COURTIAL <e.courtial30@gmail.com>",
"homepage": "https://github.com/ecourtial/php-bmp-parser"
}
],
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"Ecourtial\\PhpBmpParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpstan/phpstan-strict-rules": "^0.12.9",
"infection/infection": "^0.21.0",
"wizaplace/phpcs": "^1.3",
"ondram/ci-detector": "^3.5"
}
}