Skip to content

Commit

Permalink
Initialized repo from PHPSocialNetwork/phpfastcache#905
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolim4 committed Jan 4, 2024
1 parent d9c4cd8 commit aed42f0
Show file tree
Hide file tree
Showing 5 changed files with 970 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
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)

50 changes: 50 additions & 0 deletions composer.json
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"
}
]
}
Loading

0 comments on commit aed42f0

Please sign in to comment.