-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.41 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
{
"name": "automex/amex-license-plate-formatter-php",
"description": "PHP library to validate and format license plate numbers.",
"keywords": [
"vehicle-registation-plate",
"vehicle-license-plate",
"registation-plate",
"license-plate",
"motorcycle",
"validator",
"formatter",
"vehicles",
"vehicle",
"PHP"
],
"homepage": "https://github.com/automex/amex-license-plate-formatter-php.git",
"license": "LGPL-2.1-only",
"authors": [{
"name": "Bart Guliker",
"email": "bart1987@gmail.com"
}, {
"name": "Peter Mein",
"email": "peter@infratron.io"
}, {
"name": "Lucas van der Have",
"email": "lucas@dossierdata.nl"
}, {
"name": "Patrick Groot",
"email": "p.groot@automex.nl"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"phpunit/php-code-coverage": "^9.2",
"overtrue/phplint": "^3.0"
},
"autoload": {
"psr-4": {
"Amex\\LicensePlate\\": ["src/", "tests/"]
}
},
"scripts": {
"lint": "./vendor/bin/phplint --exclude=vendor -vvv",
"test": "./vendor/bin/phpunit tests/",
"testdox": "./vendor/bin/phpunit --testdox --colors=always --verbose tests/"
}
}