-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.2 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
{
"name": "worksome/cdn-headers",
"description": "Package that wraps around CDN headers.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/contracts": "^10.0 || ^11.0"
},
"require-dev": {
"pestphp/pest": "^2.33",
"worksome/coding-style": "^2.8",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Worksome\\CdnHeaders\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\CdnHeaders\\Tests\\": "tests"
}
},
"scripts": {
"lint": "vendor/bin/ecs --fix",
"test:unit": "vendor/bin/pest",
"test:coverage": "vendor/bin/pest --coverage --min=95",
"test:style": "vendor/bin/ecs",
"test": [
"@test:style",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}