-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
73 lines (73 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "area17/edge-flush",
"type": "library",
"description": "CDN Cache Control and Invalidation",
"keywords": [
"area17",
"laravel",
"cdn",
"edge cache",
"akamai",
"cloudfront"
],
"homepage": "https://github.com/area17/edge-flush",
"license": "MIT",
"authors": [
{
"name": "AREA 17",
"email": "support@area17.com",
"role": "Owner"
},
{
"name": "Antonio Ribeiro",
"email": "antonio@area17.com",
"role": "Creator"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"akamai-open/edgegrid-auth": "^1.0",
"aws/aws-sdk-php": "^3.185",
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.19",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.9"
},
"autoload": {
"psr-4": {
"A17\\EdgeFlush\\": "src",
"A17\\EdgeFlush\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"A17\\EdgeFlush\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"A17\\EdgeFlush\\ServiceProvider"
],
"aliases": {
"EdgeFlush": "A17\\EdgeFlush\\EdgeFlush",
"CacheControl": "A17\\EdgeFlush\\CacheControl"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}