-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialized repo from PHPSocialNetwork/phpfastcache#905
- Loading branch information
Showing
5 changed files
with
970 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Support & Security | ||
|
||
Support for this extension must be posted to the main [Phpfastcache repository](https://github.com/PHPSocialNetwork/phpfastcache/issues). | ||
|
||
Merge requests are welcome but will require the tests to pass. | ||
|
||
## Composer installation: | ||
|
||
```php | ||
composer install phpfastcache/couchbasev4-extension | ||
``` | ||
|
||
This extension requires: | ||
|
||
- The PHP `Couchbase` extension 4.x at least | ||
- The composer `Couchbase/Couchbase` library 4.x at least | ||
- The PHP `Posix` to fix a known bug (@srjlewis link it here please) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"name": "phpfastcache/couchbasev4-extension", | ||
"type" : "phpfastcache-extension", | ||
"description": "Phpfastcache Couchbase v4 extension", | ||
"keywords": ["cache", "phpfastcache", "couchbase", "v4", "couchbasev4"], | ||
"homepage": "https://github.com/PHPSocialNetwork/couchbasev4-extension", | ||
"license": "MIT", | ||
"readme": "README.md", | ||
"minimum-stability": "beta", | ||
"authors": [ | ||
{ | ||
"name": "Georges.L", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/Geolim4", | ||
"role": "Project Manager" | ||
}, | ||
{ | ||
"name": " Steven Lewis", | ||
"homepage": "https://github.com/srjlewis", | ||
"role": "Project Maintainer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.0", | ||
"phpfastcache/phpfastcache": "^9.2", | ||
"couchbase/couchbase": "^4.0", | ||
"ext-posix": "*", | ||
"ext-couchbase": "*" | ||
}, | ||
"require-dev": {}, | ||
"suggest": {}, | ||
"autoload": { | ||
"psr-4": { | ||
"Phpfastcache\\": "lib/Phpfastcache/" | ||
} | ||
}, | ||
"support": { | ||
"issues": "https://github.com/PHPSocialNetwork/phpfastcache/issues", | ||
"wiki": "https://github.com/PHPSocialNetwork/phpfastcache/wiki", | ||
"docs": "https://github.com/PHPSocialNetwork/phpfastcache/wiki", | ||
"source": "https://github.com/PHPSocialNetwork/phpfastcache", | ||
"security": "https://github.com/PHPSocialNetwork/phpfastcache/blob/master/SECURITY.md" | ||
}, | ||
"funding": [ | ||
{ | ||
"type": "patreon", | ||
"url": "https://www.patreon.com/geolim4" | ||
} | ||
] | ||
} |
Oops, something went wrong.