-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 846 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 846 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
{
"name": "mmalyszko/php-local-vin-decoder",
"description": "Lightweight VIN decoder for PHP 8+. Quickly decode vehicle brand, model, year, country, and region from a VIN — 100% local, no external API required.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^1.11"
},
"autoload": {
"psr-4": {
"VinDecoder\\": "src/VinDecoder/"
}
},
"autoload-dev": {
"psr-4": {
"VinDecoder\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpstan analyse src --level=5",
"test": "phpunit",
"test:cover": "XDEBUG_MODE=coverage phpunit --coverage-html coverage",
"format": "php-cs-fixer fix",
"format:check": "php-cs-fixer fix --dry-run --diff"
}
}