├── .env.example ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── example.php ├── phpunit.xml.dist ├── src ├── Collection │ └── AllRatesRecord.php ├── Connector │ └── CryptoConnector.php ├── CryptoMonitor.php └── Resource │ ├── GetAllRate.php │ ├── GetAssets.php │ ├── GetExchanges.php │ └── GetSpecificRate.php └── tests ├── FixtureFactory.php └── Functional ├── GetAssetsTest.php ├── GetExchangesTest.php └── GetRateTest.php /.env.example: -------------------------------------------------------------------------------- 1 | COIN_API_KEY= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.*/ 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/example.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Collection/AllRatesRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Collection/AllRatesRecord.php -------------------------------------------------------------------------------- /src/Connector/CryptoConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Connector/CryptoConnector.php -------------------------------------------------------------------------------- /src/CryptoMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/CryptoMonitor.php -------------------------------------------------------------------------------- /src/Resource/GetAllRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Resource/GetAllRate.php -------------------------------------------------------------------------------- /src/Resource/GetAssets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Resource/GetAssets.php -------------------------------------------------------------------------------- /src/Resource/GetExchanges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Resource/GetExchanges.php -------------------------------------------------------------------------------- /src/Resource/GetSpecificRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/src/Resource/GetSpecificRate.php -------------------------------------------------------------------------------- /tests/FixtureFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/tests/FixtureFactory.php -------------------------------------------------------------------------------- /tests/Functional/GetAssetsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/tests/Functional/GetAssetsTest.php -------------------------------------------------------------------------------- /tests/Functional/GetExchangesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/tests/Functional/GetExchangesTest.php -------------------------------------------------------------------------------- /tests/Functional/GetRateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PayCrypto/crypto-monitor/HEAD/tests/Functional/GetRateTest.php --------------------------------------------------------------------------------