-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.62 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
56
57
58
{
"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.3",
"azuyalabs/yasumi": "^2.5"
},
"require-dev": {
"larastan/larastan": "^3.1",
"nunomaduro/collision": "^7.10 || ^8.1.1",
"orchestra/testbench": "^9.12 || ^10.1",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.1",
"worksome/coding-style": "^3.2"
},
"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
}