PHPackages                             confyio/confyio - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. confyio/confyio

AbandonedArchivedLibrary[API Development](/categories/api)

confyio/confyio
===============

Official Confy API library client for PHP

2.1.0(9y ago)07BSDPHP

Since May 14Pushed 6y ago2 watchersCompare

[ Source](https://github.com/confyio/confy-php)[ Packagist](https://packagist.org/packages/confyio/confyio)[ Docs](https://confy.io)[ RSS](/packages/confyio-confyio/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (7)Used By (0)

confy-php
=========

[](#confy-php)

Official Confy API library client for PHP

**This library is generated by [alpaca](https://github.com/pksunkara/alpaca)**

Installation
------------

[](#installation)

Make sure you have [composer](https://getcomposer.org) installed.

Add the following to your composer.json

```
{
    "require": {
        "confyio/confyio": "*"
    }
}
```

Update your dependencies

```
$ php composer.phar update
```

> This package follows the `PSR-0` convention names for its classes, which means you can easily integrate these classes loading in your own autoloader.

#### Versions

[](#versions)

Works with \[ 5.4 / 5.5 / 5.6 \]

Usage
-----

[](#usage)

### Before Starting

[](#before-starting)

There are two ways of pointing to the credential document. You need to choose one of them.

#### User URL

[](#user-url)

Using user's authentication information

```
'https://user:pass@api.confy.io/orgs/orgname/projects/projectname/envs/envname/config'
```

#### Access Token URL

[](#access-token-url)

Using unique access token

```
'https://api.confy.io/orgs/orgname/config/abcdefabcdefabcdef1234567890abcdefabcdef'
```

### Initiate API Client

[](#initiate-api-client)

```
