-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.31 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
{
"name": "chromatic/php-gd-config-check",
"description": "Composer plugin to check for the presence and status of specified formats for the PHP GD library.",
"type": "composer-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Chromatic\\Composer\\PhpGdConfigCheck\\": "src/"
}
},
"authors": [
{
"name": "Mark Dorison",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-gd": "*",
"composer-plugin-api": "^2.2"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"chromatic/usher": "^2.18",
"composer/composer": "^2.0",
"phpstan/extension-installer": "^1.2"
},
"scripts": {
"php-check": "composer robo job:check-coding-standards",
"php-fix": "composer robo job:fix-coding-standards",
"php-stan": "composer robo job:run-static-analysis",
"robo": "robo --ansi",
"test": [
"@php-check",
"@php-stan"
]
},
"extra": {
"class": "Chromatic\\Composer\\PhpGdConfigCheck\\Plugin"
}
}