├── .dockerignore ├── .env.dist ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── build-and-publish-to-docker.yml │ └── run-tests-on-change.yml ├── .gitignore ├── .php-cs-fixer.php ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── bitcoin-dca ├── composer.json ├── composer.lock ├── config └── services.yaml ├── docker-compose.yml ├── docker ├── docker-entrypoint.sh ├── php-development.ini └── php-production.ini ├── docs ├── .gitignore ├── Makefile ├── README.md ├── _static │ └── .gitignore ├── _templates │ └── .gitignore ├── conf.py ├── configuration.rst ├── faq.rst ├── getting-notified.rst ├── getting-started.rst ├── includes │ ├── add-user-to-docker-group.rst │ ├── cron-examples.rst │ └── finding-home-directory.rst ├── index.rst ├── installation.rst ├── make.bat ├── persistent-storage.rst ├── requirements.txt ├── scheduling.rst ├── tagged-balance.rst └── xpub-withdraw.rst ├── phpunit.xml.dist ├── rector.php ├── resources ├── images │ ├── dca-illustration.png │ ├── github-logo-colored.png │ ├── logo-small.png │ ├── logo-white.png │ └── logo.png ├── notification-quotes.json ├── templates │ ├── buy_notification.email.html.php │ └── withdraw_notification.email.html.php └── xpub_derive │ ├── README.md │ ├── main.py │ └── requirements.txt ├── sonar-project.properties ├── src ├── Bitcoin.php ├── Client │ ├── BinanceClient.php │ ├── BinanceClientInterface.php │ ├── BitvavoClient.php │ ├── BitvavoClientInterface.php │ ├── Bl3pClient.php │ ├── Bl3pClientInterface.php │ ├── KrakenClient.php │ ├── KrakenClientInterface.php │ └── VerboseHttpClientDecorator.php ├── Command │ ├── BalanceCommand.php │ ├── BuyCommand.php │ ├── MachineReadableOutputCommandInterface.php │ ├── VerifyXPubCommand.php │ ├── VersionCommand.php │ └── WithdrawCommand.php ├── Component │ ├── AddressFromMasterPublicKeyComponent.php │ ├── AddressFromMasterPublicKeyComponentInterface.php │ └── ExternalAddressFromMasterPublicKeyComponent.php ├── Event │ ├── BuySuccessEvent.php │ └── WithdrawSuccessEvent.php ├── EventListener │ ├── CheckForUpdatesListener.php │ ├── IncreaseTaggedBalanceListener.php │ ├── Notifications │ │ ├── AbstractSendEmailListener.php │ │ ├── AbstractSendTelegramListener.php │ │ ├── SendEmailOnBuyListener.php │ │ ├── SendEmailOnWithdrawListener.php │ │ ├── SendTelegramOnBuyListener.php │ │ └── SendTelegramOnWithdrawListener.php │ ├── ResetTaggedBalanceListener.php │ ├── WriteOrderToCsvListener.php │ └── XPubAddressUsedListener.php ├── Exception │ ├── BinanceClientException.php │ ├── BitvavoClientException.php │ ├── Bl3pClientException.php │ ├── BuyTimeoutException.php │ ├── CouldNotGetExternalDerivationException.php │ ├── KrakenClientException.php │ ├── NoDerivationComponentAvailableException.php │ ├── NoExchangeAvailableException.php │ ├── NoMasterPublicKeyAvailableException.php │ ├── NoRecipientAddressAvailableException.php │ ├── PendingBuyOrderException.php │ └── UnableToGetRandomQuoteException.php ├── Factory │ └── DeriveFromMasterPublicKeyComponentFactory.php ├── Model │ ├── CompletedBuyOrder.php │ ├── CompletedWithdraw.php │ ├── NotificationEmailConfiguration.php │ ├── NotificationEmailTemplateInformation.php │ ├── Quote.php │ └── RemoteReleaseInformation.php ├── Provider │ ├── SimpleWithdrawAddressProvider.php │ ├── WithdrawAddressProviderInterface.php │ └── XpubWithdrawAddressProvider.php ├── Repository │ ├── JsonFileTaggedIntegerRepository.php │ └── TaggedIntegerRepositoryInterface.php ├── Service │ ├── BalanceService.php │ ├── BalanceServiceInterface.php │ ├── Binance │ │ ├── BinanceBalanceService.php │ │ ├── BinanceBuyService.php │ │ └── BinanceWithdrawService.php │ ├── Bitvavo │ │ ├── BitvavoBalanceService.php │ │ ├── BitvavoBuyService.php │ │ └── BitvavoWithdrawService.php │ ├── Bl3p │ │ ├── Bl3pBalanceService.php │ │ ├── Bl3pBuyService.php │ │ └── Bl3pWithdrawService.php │ ├── BuyService.php │ ├── BuyServiceInterface.php │ ├── Kraken │ │ ├── KrakenBalanceService.php │ │ ├── KrakenBuyService.php │ │ └── KrakenWithdrawService.php │ ├── MockExchange │ │ ├── MockExchangeBuyService.php │ │ └── MockExchangeWithdrawService.php │ ├── WithdrawService.php │ └── WithdrawServiceInterface.php └── Validator │ ├── BitcoinAddressValidator.php │ ├── BitcoinAddressValidatorException.php │ ├── ValidationException.php │ └── ValidationInterface.php ├── tests ├── Client │ ├── BinanceClientTest.php │ ├── BitvavoClientTest.php │ └── KrakenClientTest.php ├── Command │ ├── BalanceCommandTest.php │ ├── BuyCommandTest.php │ ├── VerifyXPubCommandTest.php │ ├── VersionCommandTest.php │ └── WithdrawCommandTest.php ├── Component │ ├── AddressFromMasterPublicKeyComponentTest.php │ ├── ExternalAddressFromMasterPublicKeyComponentTest.php │ └── MasterPublicKeyScenarioTrait.php ├── Event │ ├── BuySuccessEventTest.php │ └── WithdrawSuccessEventTest.php ├── EventListener │ ├── CheckForUpdatesListenerTest.php │ ├── IncreaseTaggedBalanceListenerTest.php │ ├── Notifications │ │ ├── AbstractSendEmailListenerTest.php │ │ ├── AbstractSendTelegramListenerTest.php │ │ ├── SendEmailOnBuyListenerTest.php │ │ ├── SendEmailOnWithdrawListenerTest.php │ │ ├── SendTelegramOnBuyListenerTest.php │ │ ├── SendTelegramOnWithdrawListenerTest.php │ │ └── TesterOfAbstractSendEmailListener.php │ ├── ResetTaggedBalanceListenerTest.php │ ├── WriteOrderToCsvListenerTest.php │ └── XPubAddressUsedListenerTest.php ├── Exception │ └── PendingBuyOrderExceptionTest.php ├── Factory │ └── DeriveFromMasterPublicKeyComponentFactoryTest.php ├── Model │ ├── CompletedBuyOrderTest.php │ ├── CompletedWithdrawTest.php │ ├── NotificationEmailConfigurationTest.php │ ├── NotificationEmailTemplateInformationTest.php │ ├── QuoteTest.php │ └── RemoteReleaseInformationTest.php ├── Provider │ ├── SimpleWithdrawAddressProviderTest.php │ └── XpubWithdrawAddressProviderTest.php ├── Repository │ └── JsonFileTaggedIntegerRepositoryTest.php ├── Service │ ├── BalanceServiceTest.php │ ├── Binance │ │ ├── BinanceBalanceServiceTest.php │ │ ├── BinanceBuyServiceTest.php │ │ └── BinanceWithdrawServiceTest.php │ ├── Bitvavo │ │ ├── BitvavoBalanceServiceTest.php │ │ ├── BitvavoBuyServiceTest.php │ │ ├── BitvavoWithdrawServiceTest.php │ │ └── BuyServiceTestException.php │ ├── Bl3p │ │ ├── Bl3pBalanceServiceTest.php │ │ ├── Bl3pBuyServiceTest.php │ │ ├── Bl3pWithdrawServiceTest.php │ │ └── BuyServiceTestException.php │ ├── BuyServiceTest.php │ ├── Kraken │ │ ├── KrakenBalanceServiceTest.php │ │ ├── KrakenBuyServiceTest.php │ │ └── KrakenWithdrawServiceTest.php │ └── WithdrawServiceTest.php ├── Validator │ └── BitcoinAddressValidatorTest.php └── bootstrap.php ├── tools └── php-cs-fixer │ ├── composer.json │ └── composer.lock └── var ├── cache └── .gitignore ├── logs └── .gitignore └── storage └── .gitignore /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish-to-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.github/workflows/build-and-publish-to-docker.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests-on-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.github/workflows/run-tests-on-change.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/README.md -------------------------------------------------------------------------------- /bin/bitcoin-dca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/bin/bitcoin-dca -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/composer.lock -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/config/services.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/php-development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docker/php-development.ini -------------------------------------------------------------------------------- /docker/php-production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docker/php-production.ini -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/getting-notified.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/getting-notified.rst -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/includes/add-user-to-docker-group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/includes/add-user-to-docker-group.rst -------------------------------------------------------------------------------- /docs/includes/cron-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/includes/cron-examples.rst -------------------------------------------------------------------------------- /docs/includes/finding-home-directory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/includes/finding-home-directory.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/persistent-storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/persistent-storage.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /docs/scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/scheduling.rst -------------------------------------------------------------------------------- /docs/tagged-balance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/tagged-balance.rst -------------------------------------------------------------------------------- /docs/xpub-withdraw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/docs/xpub-withdraw.rst -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/rector.php -------------------------------------------------------------------------------- /resources/images/dca-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/images/dca-illustration.png -------------------------------------------------------------------------------- /resources/images/github-logo-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/images/github-logo-colored.png -------------------------------------------------------------------------------- /resources/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/images/logo-small.png -------------------------------------------------------------------------------- /resources/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/images/logo-white.png -------------------------------------------------------------------------------- /resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/images/logo.png -------------------------------------------------------------------------------- /resources/notification-quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/notification-quotes.json -------------------------------------------------------------------------------- /resources/templates/buy_notification.email.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/templates/buy_notification.email.html.php -------------------------------------------------------------------------------- /resources/templates/withdraw_notification.email.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/templates/withdraw_notification.email.html.php -------------------------------------------------------------------------------- /resources/xpub_derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/xpub_derive/README.md -------------------------------------------------------------------------------- /resources/xpub_derive/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/resources/xpub_derive/main.py -------------------------------------------------------------------------------- /resources/xpub_derive/requirements.txt: -------------------------------------------------------------------------------- 1 | btclib==2020.5.11 2 | fire==0.3.1 3 | termcolor==1.1.0 4 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Bitcoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Bitcoin.php -------------------------------------------------------------------------------- /src/Client/BinanceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/BinanceClient.php -------------------------------------------------------------------------------- /src/Client/BinanceClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/BinanceClientInterface.php -------------------------------------------------------------------------------- /src/Client/BitvavoClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/BitvavoClient.php -------------------------------------------------------------------------------- /src/Client/BitvavoClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/BitvavoClientInterface.php -------------------------------------------------------------------------------- /src/Client/Bl3pClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/Bl3pClient.php -------------------------------------------------------------------------------- /src/Client/Bl3pClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/Bl3pClientInterface.php -------------------------------------------------------------------------------- /src/Client/KrakenClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/KrakenClient.php -------------------------------------------------------------------------------- /src/Client/KrakenClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/KrakenClientInterface.php -------------------------------------------------------------------------------- /src/Client/VerboseHttpClientDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Client/VerboseHttpClientDecorator.php -------------------------------------------------------------------------------- /src/Command/BalanceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/BalanceCommand.php -------------------------------------------------------------------------------- /src/Command/BuyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/BuyCommand.php -------------------------------------------------------------------------------- /src/Command/MachineReadableOutputCommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/MachineReadableOutputCommandInterface.php -------------------------------------------------------------------------------- /src/Command/VerifyXPubCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/VerifyXPubCommand.php -------------------------------------------------------------------------------- /src/Command/VersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/VersionCommand.php -------------------------------------------------------------------------------- /src/Command/WithdrawCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Command/WithdrawCommand.php -------------------------------------------------------------------------------- /src/Component/AddressFromMasterPublicKeyComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Component/AddressFromMasterPublicKeyComponent.php -------------------------------------------------------------------------------- /src/Component/AddressFromMasterPublicKeyComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Component/AddressFromMasterPublicKeyComponentInterface.php -------------------------------------------------------------------------------- /src/Component/ExternalAddressFromMasterPublicKeyComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Component/ExternalAddressFromMasterPublicKeyComponent.php -------------------------------------------------------------------------------- /src/Event/BuySuccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Event/BuySuccessEvent.php -------------------------------------------------------------------------------- /src/Event/WithdrawSuccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Event/WithdrawSuccessEvent.php -------------------------------------------------------------------------------- /src/EventListener/CheckForUpdatesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/CheckForUpdatesListener.php -------------------------------------------------------------------------------- /src/EventListener/IncreaseTaggedBalanceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/IncreaseTaggedBalanceListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/AbstractSendEmailListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/AbstractSendEmailListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/AbstractSendTelegramListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/AbstractSendTelegramListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/SendEmailOnBuyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/SendEmailOnBuyListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/SendEmailOnWithdrawListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/SendEmailOnWithdrawListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/SendTelegramOnBuyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/SendTelegramOnBuyListener.php -------------------------------------------------------------------------------- /src/EventListener/Notifications/SendTelegramOnWithdrawListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/Notifications/SendTelegramOnWithdrawListener.php -------------------------------------------------------------------------------- /src/EventListener/ResetTaggedBalanceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/ResetTaggedBalanceListener.php -------------------------------------------------------------------------------- /src/EventListener/WriteOrderToCsvListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/WriteOrderToCsvListener.php -------------------------------------------------------------------------------- /src/EventListener/XPubAddressUsedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/EventListener/XPubAddressUsedListener.php -------------------------------------------------------------------------------- /src/Exception/BinanceClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/BinanceClientException.php -------------------------------------------------------------------------------- /src/Exception/BitvavoClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/BitvavoClientException.php -------------------------------------------------------------------------------- /src/Exception/Bl3pClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/Bl3pClientException.php -------------------------------------------------------------------------------- /src/Exception/BuyTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/BuyTimeoutException.php -------------------------------------------------------------------------------- /src/Exception/CouldNotGetExternalDerivationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/CouldNotGetExternalDerivationException.php -------------------------------------------------------------------------------- /src/Exception/KrakenClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/KrakenClientException.php -------------------------------------------------------------------------------- /src/Exception/NoDerivationComponentAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/NoDerivationComponentAvailableException.php -------------------------------------------------------------------------------- /src/Exception/NoExchangeAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/NoExchangeAvailableException.php -------------------------------------------------------------------------------- /src/Exception/NoMasterPublicKeyAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/NoMasterPublicKeyAvailableException.php -------------------------------------------------------------------------------- /src/Exception/NoRecipientAddressAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/NoRecipientAddressAvailableException.php -------------------------------------------------------------------------------- /src/Exception/PendingBuyOrderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/PendingBuyOrderException.php -------------------------------------------------------------------------------- /src/Exception/UnableToGetRandomQuoteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Exception/UnableToGetRandomQuoteException.php -------------------------------------------------------------------------------- /src/Factory/DeriveFromMasterPublicKeyComponentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Factory/DeriveFromMasterPublicKeyComponentFactory.php -------------------------------------------------------------------------------- /src/Model/CompletedBuyOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/CompletedBuyOrder.php -------------------------------------------------------------------------------- /src/Model/CompletedWithdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/CompletedWithdraw.php -------------------------------------------------------------------------------- /src/Model/NotificationEmailConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/NotificationEmailConfiguration.php -------------------------------------------------------------------------------- /src/Model/NotificationEmailTemplateInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/NotificationEmailTemplateInformation.php -------------------------------------------------------------------------------- /src/Model/Quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/Quote.php -------------------------------------------------------------------------------- /src/Model/RemoteReleaseInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Model/RemoteReleaseInformation.php -------------------------------------------------------------------------------- /src/Provider/SimpleWithdrawAddressProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Provider/SimpleWithdrawAddressProvider.php -------------------------------------------------------------------------------- /src/Provider/WithdrawAddressProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Provider/WithdrawAddressProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/XpubWithdrawAddressProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Provider/XpubWithdrawAddressProvider.php -------------------------------------------------------------------------------- /src/Repository/JsonFileTaggedIntegerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Repository/JsonFileTaggedIntegerRepository.php -------------------------------------------------------------------------------- /src/Repository/TaggedIntegerRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Repository/TaggedIntegerRepositoryInterface.php -------------------------------------------------------------------------------- /src/Service/BalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/BalanceService.php -------------------------------------------------------------------------------- /src/Service/BalanceServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/BalanceServiceInterface.php -------------------------------------------------------------------------------- /src/Service/Binance/BinanceBalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Binance/BinanceBalanceService.php -------------------------------------------------------------------------------- /src/Service/Binance/BinanceBuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Binance/BinanceBuyService.php -------------------------------------------------------------------------------- /src/Service/Binance/BinanceWithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Binance/BinanceWithdrawService.php -------------------------------------------------------------------------------- /src/Service/Bitvavo/BitvavoBalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bitvavo/BitvavoBalanceService.php -------------------------------------------------------------------------------- /src/Service/Bitvavo/BitvavoBuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bitvavo/BitvavoBuyService.php -------------------------------------------------------------------------------- /src/Service/Bitvavo/BitvavoWithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bitvavo/BitvavoWithdrawService.php -------------------------------------------------------------------------------- /src/Service/Bl3p/Bl3pBalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bl3p/Bl3pBalanceService.php -------------------------------------------------------------------------------- /src/Service/Bl3p/Bl3pBuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bl3p/Bl3pBuyService.php -------------------------------------------------------------------------------- /src/Service/Bl3p/Bl3pWithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Bl3p/Bl3pWithdrawService.php -------------------------------------------------------------------------------- /src/Service/BuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/BuyService.php -------------------------------------------------------------------------------- /src/Service/BuyServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/BuyServiceInterface.php -------------------------------------------------------------------------------- /src/Service/Kraken/KrakenBalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Kraken/KrakenBalanceService.php -------------------------------------------------------------------------------- /src/Service/Kraken/KrakenBuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Kraken/KrakenBuyService.php -------------------------------------------------------------------------------- /src/Service/Kraken/KrakenWithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/Kraken/KrakenWithdrawService.php -------------------------------------------------------------------------------- /src/Service/MockExchange/MockExchangeBuyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/MockExchange/MockExchangeBuyService.php -------------------------------------------------------------------------------- /src/Service/MockExchange/MockExchangeWithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/MockExchange/MockExchangeWithdrawService.php -------------------------------------------------------------------------------- /src/Service/WithdrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/WithdrawService.php -------------------------------------------------------------------------------- /src/Service/WithdrawServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Service/WithdrawServiceInterface.php -------------------------------------------------------------------------------- /src/Validator/BitcoinAddressValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Validator/BitcoinAddressValidator.php -------------------------------------------------------------------------------- /src/Validator/BitcoinAddressValidatorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Validator/BitcoinAddressValidatorException.php -------------------------------------------------------------------------------- /src/Validator/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Validator/ValidationException.php -------------------------------------------------------------------------------- /src/Validator/ValidationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/src/Validator/ValidationInterface.php -------------------------------------------------------------------------------- /tests/Client/BinanceClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Client/BinanceClientTest.php -------------------------------------------------------------------------------- /tests/Client/BitvavoClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Client/BitvavoClientTest.php -------------------------------------------------------------------------------- /tests/Client/KrakenClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Client/KrakenClientTest.php -------------------------------------------------------------------------------- /tests/Command/BalanceCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Command/BalanceCommandTest.php -------------------------------------------------------------------------------- /tests/Command/BuyCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Command/BuyCommandTest.php -------------------------------------------------------------------------------- /tests/Command/VerifyXPubCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Command/VerifyXPubCommandTest.php -------------------------------------------------------------------------------- /tests/Command/VersionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Command/VersionCommandTest.php -------------------------------------------------------------------------------- /tests/Command/WithdrawCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Command/WithdrawCommandTest.php -------------------------------------------------------------------------------- /tests/Component/AddressFromMasterPublicKeyComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Component/AddressFromMasterPublicKeyComponentTest.php -------------------------------------------------------------------------------- /tests/Component/ExternalAddressFromMasterPublicKeyComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Component/ExternalAddressFromMasterPublicKeyComponentTest.php -------------------------------------------------------------------------------- /tests/Component/MasterPublicKeyScenarioTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Component/MasterPublicKeyScenarioTrait.php -------------------------------------------------------------------------------- /tests/Event/BuySuccessEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Event/BuySuccessEventTest.php -------------------------------------------------------------------------------- /tests/Event/WithdrawSuccessEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Event/WithdrawSuccessEventTest.php -------------------------------------------------------------------------------- /tests/EventListener/CheckForUpdatesListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/CheckForUpdatesListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/IncreaseTaggedBalanceListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/IncreaseTaggedBalanceListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/AbstractSendEmailListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/AbstractSendEmailListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/AbstractSendTelegramListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/AbstractSendTelegramListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/SendEmailOnBuyListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/SendEmailOnBuyListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/SendEmailOnWithdrawListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/SendEmailOnWithdrawListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/SendTelegramOnBuyListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/SendTelegramOnBuyListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/SendTelegramOnWithdrawListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/SendTelegramOnWithdrawListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/Notifications/TesterOfAbstractSendEmailListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/Notifications/TesterOfAbstractSendEmailListener.php -------------------------------------------------------------------------------- /tests/EventListener/ResetTaggedBalanceListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/ResetTaggedBalanceListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/WriteOrderToCsvListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/WriteOrderToCsvListenerTest.php -------------------------------------------------------------------------------- /tests/EventListener/XPubAddressUsedListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/EventListener/XPubAddressUsedListenerTest.php -------------------------------------------------------------------------------- /tests/Exception/PendingBuyOrderExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Exception/PendingBuyOrderExceptionTest.php -------------------------------------------------------------------------------- /tests/Factory/DeriveFromMasterPublicKeyComponentFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Factory/DeriveFromMasterPublicKeyComponentFactoryTest.php -------------------------------------------------------------------------------- /tests/Model/CompletedBuyOrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/CompletedBuyOrderTest.php -------------------------------------------------------------------------------- /tests/Model/CompletedWithdrawTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/CompletedWithdrawTest.php -------------------------------------------------------------------------------- /tests/Model/NotificationEmailConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/NotificationEmailConfigurationTest.php -------------------------------------------------------------------------------- /tests/Model/NotificationEmailTemplateInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/NotificationEmailTemplateInformationTest.php -------------------------------------------------------------------------------- /tests/Model/QuoteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/QuoteTest.php -------------------------------------------------------------------------------- /tests/Model/RemoteReleaseInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Model/RemoteReleaseInformationTest.php -------------------------------------------------------------------------------- /tests/Provider/SimpleWithdrawAddressProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Provider/SimpleWithdrawAddressProviderTest.php -------------------------------------------------------------------------------- /tests/Provider/XpubWithdrawAddressProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Provider/XpubWithdrawAddressProviderTest.php -------------------------------------------------------------------------------- /tests/Repository/JsonFileTaggedIntegerRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Repository/JsonFileTaggedIntegerRepositoryTest.php -------------------------------------------------------------------------------- /tests/Service/BalanceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/BalanceServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Binance/BinanceBalanceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Binance/BinanceBalanceServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Binance/BinanceBuyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Binance/BinanceBuyServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Binance/BinanceWithdrawServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Binance/BinanceWithdrawServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bitvavo/BitvavoBalanceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bitvavo/BitvavoBalanceServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bitvavo/BitvavoBuyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bitvavo/BitvavoBuyServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bitvavo/BitvavoWithdrawServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bitvavo/BitvavoWithdrawServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bitvavo/BuyServiceTestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bitvavo/BuyServiceTestException.php -------------------------------------------------------------------------------- /tests/Service/Bl3p/Bl3pBalanceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bl3p/Bl3pBalanceServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bl3p/Bl3pBuyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bl3p/Bl3pBuyServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bl3p/Bl3pWithdrawServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bl3p/Bl3pWithdrawServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Bl3p/BuyServiceTestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Bl3p/BuyServiceTestException.php -------------------------------------------------------------------------------- /tests/Service/BuyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/BuyServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Kraken/KrakenBalanceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Kraken/KrakenBalanceServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Kraken/KrakenBuyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Kraken/KrakenBuyServiceTest.php -------------------------------------------------------------------------------- /tests/Service/Kraken/KrakenWithdrawServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/Kraken/KrakenWithdrawServiceTest.php -------------------------------------------------------------------------------- /tests/Service/WithdrawServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Service/WithdrawServiceTest.php -------------------------------------------------------------------------------- /tests/Validator/BitcoinAddressValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/Validator/BitcoinAddressValidatorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tools/php-cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tools/php-cs-fixer/composer.json -------------------------------------------------------------------------------- /tools/php-cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorijn/bitcoin-dca/HEAD/tools/php-cs-fixer/composer.lock -------------------------------------------------------------------------------- /var/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /var/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /var/storage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | --------------------------------------------------------------------------------