Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed to make PHP 8.1 compatible #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ This file details information that will be useful for the project maintainers.

## Release Process

Put the desired version number into `composer.json` and into the `VERSION` constant in `src/PHPCouchDB/Server.php`. Then tag the master branch of the repo with the matching tag e.g. "v0.1.2" and push to GitHub.
Put the desired version number into `composer.json` and into the `VERSION` constant in `src/PHPCouchDB/Server.php`. Then tag the master branch of the repo with the matching tag e.g. "v0.2" and push to GitHub.

Finally, edit the release to add information about changes in this release, with links to documentation where appropriate.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/ibm-watson-data-lab/php-couchdb.svg?branch=master)](https://travis-ci.org/ibm-watson-data-lab/php-couchdb)
[![Build Status](https://travis-ci.org/agencychief/php-couchdb.svg?branch=master)](https://travis-ci.org/agencychief/php-couchdb)

# PHP CouchDB

Expand All @@ -11,12 +11,12 @@ A lightweight library to make it very easy to work with [CouchDB](http://couchdb
It's recommended to install this library using [Composer](https://getcomposer.org/):

```
composer require ibm-watson-data-lab/php-couchdb
composer require agencychief/php-couchdb
```

## Usage

Here's the tl;dr of how to begin. For more detailed examples, see the [wiki](https://github.com/ibm-watson-data-lab/php-couchdb/wiki) and/or generate the API docs with `composer docs`
Here's the tl;dr of how to begin. For more detailed examples, see the [wiki](https://github.com/agencychief/php-couchdb/wiki) and/or generate the API docs with `composer docs`

```php
<?php
Expand Down
16 changes: 10 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
"name": "ibm-watson-data-lab/php-couchdb",
"name": "agencychief/php-couchdb",
"description": "Library for easily talking to CouchDB from PHP",
"type": "library",
"license": "Apache-2.0",
"version": "0.1.2",
"version": "0.2",
"authors": [
{
"name": "Lorna Jane Mitchell",
"email": "[email protected]"
},
{
"name": "Dietrich Gottfried Schmidt",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"PHPCouchDB\\": "src/PHPCouchDB"}
},
"require": {
"php": "^7.0",
"php": "^8.1",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^3.0",
"theseer/phpdox": "~0.10"
},
"phpunit/php-timer": "^6.0",
"phpunit/phpunit": "^10.2"
},
"scripts": {
"phpcs": "phpcs --standard=PSR2 src",
"docs": "phpdox",
Expand Down
Loading