-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.39 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": "smartframe-technologies/laminas-cdn",
"description": "Laminas module that integrates different CDN provider APIs",
"license": "Apache-2.0",
"keywords": [
"laminas",
"cdn",
"fastly"
],
"extra": {
"laminas": {
"component": "Smartframe\\Cdn",
"config-provider": "Smartframe\\Cdn\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Smartframe\\Cdn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SmartframeTest\\Cdn\\": "test/"
}
},
"authors": [
{
"name": "Michal Izewski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0 | ^8.1",
"fastly/fastly": "1.0.0",
"fig/http-message-util": "^1.1.5",
"laminas/laminas-servicemanager": "^3.10.0",
"psr/container": "^1.1.2",
"psr/http-message": "^1.0.1",
"psr/log": "^1.1.4",
"smartframe-technologies/cloudflare-php": "dev-feature/key-value-endpoint"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/SmartFrame-Technologies/cloudflare-php"
}
]
}