-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.53 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": "mazedlx/laravel-feature-policy",
"description": "Add Feature-Policy headers to the responses of a Laravel app",
"keywords": [
"laravel-feature-policy",
"feature-policy",
"security",
"headers",
"laravel"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Leo-Pernold",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1|^8.2",
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^10.0",
"driftingly/rector-laravel": "^0.17.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.24.0 || ^0.26.0 || ^0.30.0 || ^0.40.0 || ^0.41.0|^1.0",
"rector/rector": "^0.15.21 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0|^1.0 || ^2.0"
},
"autoload": {
"psr-4": {
"Mazedlx\\FeaturePolicy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mazedlx\\FeaturePolicy\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Mazedlx\\FeaturePolicy\\FeaturePolicyServiceProvider"
]
}
}
}