-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.49 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
54
55
{
"name": "worksome/uk-tax-allowance",
"description": "A package helping in determining the Uk weekly or monthly tax allowance for a specific date range",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"azuyalabs/yasumi": "^2.5"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"pestphp/pest": "^2.33",
"worksome/coding-style": "^2.8"
},
"autoload": {
"psr-4": {
"Worksome\\UkTaxAllowance\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\UkTaxAllowance\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
},
"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"
]
},
"extra": {
"laravel": {
"providers": [
"Worksome\\UkTaxAllowance\\UkTaxAllowanceServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}