├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json ├── config.php.example ├── src ├── Api.php ├── ApiInterface.php ├── AppCurl.php └── Auth.php └── test ├── index.php ├── src └── Example │ ├── Example.php │ ├── Hydrator.php │ └── Result.php ├── test_advanced.php ├── test_basic_private.php ├── test_basic_public.php └── test_open_con.php /.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/composer.json -------------------------------------------------------------------------------- /config.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/config.php.example -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/ApiInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/src/ApiInterface.php -------------------------------------------------------------------------------- /src/AppCurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/src/AppCurl.php -------------------------------------------------------------------------------- /src/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/src/Auth.php -------------------------------------------------------------------------------- /test/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/index.php -------------------------------------------------------------------------------- /test/src/Example/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/src/Example/Example.php -------------------------------------------------------------------------------- /test/src/Example/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/src/Example/Hydrator.php -------------------------------------------------------------------------------- /test/src/Example/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/src/Example/Result.php -------------------------------------------------------------------------------- /test/test_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/test_advanced.php -------------------------------------------------------------------------------- /test/test_basic_private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/test_basic_private.php -------------------------------------------------------------------------------- /test/test_basic_public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/test_basic_public.php -------------------------------------------------------------------------------- /test/test_open_con.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrteye/GDAX/HEAD/test/test_open_con.php --------------------------------------------------------------------------------