This repository was archived by the owner on Sep 12, 2025. It is now read-only.
forked from SergkeiM/php-cloudflare-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.56 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.56 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
58
{
"name": "sergkeim/php-cloudflare-api",
"description": "PHP Client for Cloudflare API.",
"type": "library",
"keywords": ["cloudflare", "cloudflare-api", "api"],
"license": "MIT",
"authors": [
{
"name": "Sergkei Melingk",
"email": "sergio11of@gmail.com",
"homepage": "https://github.com/SergkeiM",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/SergkeiM/php-cloudflare-api",
"issues": "https://github.com/SergkeiM/php-cloudflare-api/issues",
"email": "sergio11of@gmail.com",
"docs": "https://php-cloudflare-api.nuxt.space/"
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.9",
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.17 || ^10.5.13",
"friendsofphp/php-cs-fixer": "^3.62",
"graham-campbell/testbench": "^6.1"
},
"autoload": {
"psr-4": {
"Cloudflare\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cloudflare\\Tests\\": "test/Tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"fix": "vendor/bin/php-cs-fixer fix"
},
"extra": {
"laravel": {
"providers": [
"Cloudflare\\CloudflareServiceProvider"
]
}
}
}