├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── BR │ └── Consul │ ├── AbstractClient.php │ ├── Agent.php │ ├── Exception │ └── NotFoundException.php │ ├── KeyValueStore.php │ ├── Model │ ├── Datacenter.php │ ├── DatacenterList.php │ ├── KeyValue.php │ ├── Service.php │ └── ServiceList.php │ └── config │ ├── agent.json │ ├── catalog.json │ ├── key_value_store.json │ └── service.json └── tests ├── BR └── Consul │ └── Tests │ ├── AgentTest.php │ ├── ClientTest.php │ ├── KeyValueStoreTest.php │ ├── Model │ ├── ServiceListTest.php │ └── ServiceTest.php │ └── fixtures │ ├── get-datacenters │ ├── get-value_key1 │ ├── service-deregister │ ├── service-register │ ├── services-get │ └── set-value_key2 └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/BR/Consul/AbstractClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/AbstractClient.php -------------------------------------------------------------------------------- /src/BR/Consul/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Agent.php -------------------------------------------------------------------------------- /src/BR/Consul/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/BR/Consul/KeyValueStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/KeyValueStore.php -------------------------------------------------------------------------------- /src/BR/Consul/Model/Datacenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Model/Datacenter.php -------------------------------------------------------------------------------- /src/BR/Consul/Model/DatacenterList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Model/DatacenterList.php -------------------------------------------------------------------------------- /src/BR/Consul/Model/KeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Model/KeyValue.php -------------------------------------------------------------------------------- /src/BR/Consul/Model/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Model/Service.php -------------------------------------------------------------------------------- /src/BR/Consul/Model/ServiceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/Model/ServiceList.php -------------------------------------------------------------------------------- /src/BR/Consul/config/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/config/agent.json -------------------------------------------------------------------------------- /src/BR/Consul/config/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/config/catalog.json -------------------------------------------------------------------------------- /src/BR/Consul/config/key_value_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/config/key_value_store.json -------------------------------------------------------------------------------- /src/BR/Consul/config/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/src/BR/Consul/config/service.json -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/AgentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/AgentTest.php -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/ClientTest.php -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/KeyValueStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/KeyValueStoreTest.php -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/Model/ServiceListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/Model/ServiceListTest.php -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/Model/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/Model/ServiceTest.php -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/get-datacenters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/get-datacenters -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/get-value_key1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/get-value_key1 -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/service-deregister: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/service-deregister -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/service-register: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/service-register -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/services-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/services-get -------------------------------------------------------------------------------- /tests/BR/Consul/Tests/fixtures/set-value_key2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/BR/Consul/Tests/fixtures/set-value_key2 -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldurrensch/consul-php/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------