-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.39 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": "worksome/uk-tax-code-validator",
"description": "A package for validating tax codes in UK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Oliver Nybroe",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"thecodingmachine/safe": "^2.5",
"illuminate/contracts": "^10.0 || ^11.0",
"illuminate/pipeline": "^10.0 || ^11.0"
},
"require-dev": {
"pestphp/pest": "^2.33",
"worksome/coding-style": "^2.8"
},
"autoload": {
"psr-4": {
"Worksome\\UkTaxCodeValidator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\UkTaxCodeValidator\\Tests\\": "tests"
}
},
"scripts": {
"lint": "vendor/bin/ecs --fix",
"test:unit": "vendor/bin/pest -p",
"test:coverage": "vendor/bin/pest -p --coverage",
"test:types": "vendor/bin/phpstan analyse",
"test:style": "vendor/bin/ecs",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}