-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.84 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.84 KB
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
{
"name": "ghostcompiler/laravel-cloudflare",
"description": "Production-ready Laravel SDK for the Cloudflare API v4",
"license": "MIT",
"authors": [
{
"name": "Ghost Compiler",
"email": "info@ghostcompiler.com"
}
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0 || ^13.0",
"rector/rector": "^1.0",
"vimeo/psalm": "^5.9"
},
"autoload": {
"psr-4": {
"Vendor\\Cloudflare\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vendor\\Cloudflare\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Vendor\\Cloudflare\\Providers\\CloudflareServiceProvider"
],
"aliases": {
"Cloudflare": "Vendor\\Cloudflare\\Facades\\Cloudflare"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"audit": {
"ignore": {
"PKSA-mdq4-51ck-6kdq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production.",
"GHSA-5vg9-5847-vvmq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production."
}
}
}
}