-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "fuwasegu/php-base64-image",
"description": "Library for easy handling of base64-encoded images in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "fuwasegu",
"email": "contact@fuwasegu.com"
}
],
"keywords": ["php", "image", "base64"],
"require": {
"php": "^8.1",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"Fuwasegu\\PhpBase64Image\\": "src/",
"Fuwasegu\\PhpBase64Image\\Contract\\": "src/contract/"
}
},
"autoload-dev": {
"psr-4": {
"Fuwasegu\\PhpBase64Image\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/ --testdox",
"stan": "vendor/bin/phpstan analyse --level=9 --memory-limit=2G src tests",
"lint": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run",
"lint:fix": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"yumemi-inc/php-cs-fixer-config": "^8.1",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9"
}
}