-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.23 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
50
51
52
53
{
"name": "odinshat/tyre-label-generator",
"description": "PHP library Tyre Label Generator compatible with EU Tyre Label styling and standards",
"type": "library",
"keywords": [
"tyre",
"tire",
"images",
"image generator",
"eu",
"regulations"
],
"homepage": "https://github.com/OdinsHat/tyre-label-generator",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Doug Bromley",
"email": "[email protected]",
"homepage": "https://github.com/OdinsHat/tyre-label-generator",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/OdinsHat/tyre-label-generator/issues",
"source": "https://github.com/OdinsHat/tyre-label-generator"
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.9",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.9",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"classmap": [
"src/",
"tests/"
],
"exclude-from-classmap": []
},
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix"
],
"analyze": [
"vendor/bin/psalm --show-info=false"
]
}
}