Skip to content

Commit aed42f0

Browse files
committed
Initialized repo from PHPSocialNetwork/phpfastcache#905
1 parent d9c4cd8 commit aed42f0

File tree

5 files changed

+970
-0
lines changed

5 files changed

+970
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Support & Security
2+
3+
Support for this extension must be posted to the main [Phpfastcache repository](https://github.com/PHPSocialNetwork/phpfastcache/issues).
4+
5+
Merge requests are welcome but will require the tests to pass.
6+
7+
## Composer installation:
8+
9+
```php
10+
composer install phpfastcache/couchbasev4-extension
11+
```
12+
13+
This extension requires:
14+
15+
- The PHP `Couchbase` extension 4.x at least
16+
- The composer `Couchbase/Couchbase` library 4.x at least
17+
- The PHP `Posix` to fix a known bug (@srjlewis link it here please)
18+

composer.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "phpfastcache/couchbasev4-extension",
3+
"type" : "phpfastcache-extension",
4+
"description": "Phpfastcache Couchbase v4 extension",
5+
"keywords": ["cache", "phpfastcache", "couchbase", "v4", "couchbasev4"],
6+
"homepage": "https://github.com/PHPSocialNetwork/couchbasev4-extension",
7+
"license": "MIT",
8+
"readme": "README.md",
9+
"minimum-stability": "beta",
10+
"authors": [
11+
{
12+
"name": "Georges.L",
13+
"email": "contact@geolim4.com",
14+
"homepage": "https://github.com/Geolim4",
15+
"role": "Project Manager"
16+
},
17+
{
18+
"name": " Steven Lewis",
19+
"homepage": "https://github.com/srjlewis",
20+
"role": "Project Maintainer"
21+
}
22+
],
23+
"require": {
24+
"php": ">=8.0",
25+
"phpfastcache/phpfastcache": "^9.2",
26+
"couchbase/couchbase": "^4.0",
27+
"ext-posix": "*",
28+
"ext-couchbase": "*"
29+
},
30+
"require-dev": {},
31+
"suggest": {},
32+
"autoload": {
33+
"psr-4": {
34+
"Phpfastcache\\": "lib/Phpfastcache/"
35+
}
36+
},
37+
"support": {
38+
"issues": "https://github.com/PHPSocialNetwork/phpfastcache/issues",
39+
"wiki": "https://github.com/PHPSocialNetwork/phpfastcache/wiki",
40+
"docs": "https://github.com/PHPSocialNetwork/phpfastcache/wiki",
41+
"source": "https://github.com/PHPSocialNetwork/phpfastcache",
42+
"security": "https://github.com/PHPSocialNetwork/phpfastcache/blob/master/SECURITY.md"
43+
},
44+
"funding": [
45+
{
46+
"type": "patreon",
47+
"url": "https://www.patreon.com/geolim4"
48+
}
49+
]
50+
}

0 commit comments

Comments
 (0)