-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
97 lines (97 loc) · 3.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"type": "library",
"name": "sweetchuck/cache-backend-arangodb",
"description": "PSR6 compatible cache backend implementation with ArangoDB",
"license": "GPL-2.0-or-later",
"keywords": [
"PSR16",
"cache",
"ArangoDB"
],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
},
{
"name": "Contributors",
"homepage": "https://github.com/Sweetchuck/cache-backend-arangodb/graphs/contributors"
}
],
"homepage": "https://github.com/Sweetchuck/cache-backend-arangodb",
"support": {
"source": "https://github.com/Sweetchuck/cache-backend-arangodb",
"issues": "https://github.com/Sweetchuck/cache-backend-arangodb/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"sweetchuck/git-hooks": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"repositories": {
"cache/adapter-common": {
"type": "github",
"url": "https://github.com/Sweetchuck-psr-cache/cache-adapter-common.git"
},
"cache/tag-interop": {
"type": "github",
"url": "https://github.com/Sweetchuck-psr-cache/cache-tag-interop.git"
},
"cache/taggable-cache": {
"type": "github",
"url": "https://github.com/Sweetchuck-psr-cache/cache-taggable-cache.git"
},
"cache/integration-tests": {
"type": "github",
"url": "https://github.com/Sweetchuck-psr-cache/cache-integration-tests.git"
}
},
"require": {
"php": ">= 8.2",
"cache/adapter-common": "3.x-dev",
"cache/tag-interop": "3.x-dev",
"cache/taggable-cache": "3.x-dev",
"psr/cache": "^3.0",
"psr/simple-cache": "^3.0",
"triagens/arangodb": "dev-devel#7254837dafd9aeea3a4006b453283aff9c3507fc"
},
"require-dev": {
"ext-json": "*",
"cache/integration-tests": "3.x-dev",
"consolidation/robo": "^4.0",
"nuvoleweb/robo-config": "^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"psr/container": "^1.0",
"squizlabs/php_codesniffer": "^3.5",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/robo-git": "3.x-dev",
"sweetchuck/robo-phpcs": "3.x-dev",
"sweetchuck/robo-phpmd": "3.x-dev",
"sweetchuck/robo-phpunit": "3.x-dev",
"symfony/phpunit-bridge": "^5.0 || ^6.0",
"vimeo/psalm": "^5.18"
},
"autoload": {
"psr-4": {
"Sweetchuck\\CacheBackend\\ArangoDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\CacheBackend\\ArangoDb\\Tests\\": "tests/src/"
}
},
"suggest": {
"ext-igbinary": "One of the data serializer uses the 'igbinary' extension. https://pecl.php.net/package/igbinary",
"ext-json": "One of the data serializer uses the 'json' extension.",
"ext-msgpack": "One of the data serializer uses the 'msgpack' extension. https://pecl.php.net/package/msgpack"
}
}