{"id":21991447,"url":"https://github.com/neto737/bitgosdk-php","last_synced_at":"2026-02-28T15:02:08.520Z","repository":{"id":41145671,"uuid":"66281245","full_name":"neto737/BitGoSDK-PHP","owner":"neto737","description":"BitGo SDK written in PHP","archived":false,"fork":false,"pushed_at":"2022-10-31T01:09:28.000Z","size":324,"stargazers_count":24,"open_issues_count":1,"forks_count":18,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T16:39:18.851Z","etag":null,"topics":["bitcoin","bitgo","blockchain","gateway-api","payments","php","sdk"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neto737.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"liberapay":"neto737","custom":["https://www.paypal.com/donate/?business=T7RVRCXLZXB58\u0026no_recurring=0\u0026currency_code=USD","https://www.blockchain.com/btc/address/bc1pduj90df9cs3md3gym3q809slfv2x5phnpv8xznajys5q3tlulnzqt3flwn","https://etherscan.io/address/0xeef9220639F14E7A0FD825AAAd0574e5a8aD7A4B","https://blockchair.com/litecoin/address/ltc1q508qfkd09vyya6c5zkfx4r248pf3ezj9ngjdr2"]}},"created_at":"2016-08-22T14:48:02.000Z","updated_at":"2024-08-12T19:24:30.000Z","dependencies_parsed_at":"2022-08-23T14:11:22.679Z","dependency_job_id":null,"html_url":"https://github.com/neto737/BitGoSDK-PHP","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neto737%2FBitGoSDK-PHP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neto737%2FBitGoSDK-PHP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neto737%2FBitGoSDK-PHP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neto737%2FBitGoSDK-PHP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neto737","download_url":"https://codeload.github.com/neto737/BitGoSDK-PHP/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251714801,"owners_count":21631789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","bitgo","blockchain","gateway-api","payments","php","sdk"],"created_at":"2024-11-29T20:09:26.321Z","updated_at":"2026-02-28T15:02:08.471Z","avatar_url":"https://github.com/neto737.png","language":"PHP","funding_links":["https://liberapay.com/neto737","https://www.paypal.com/donate/?business=T7RVRCXLZXB58\u0026no_recurring=0\u0026currency_code=USD","https://www.blockchain.com/btc/address/bc1pduj90df9cs3md3gym3q809slfv2x5phnpv8xznajys5q3tlulnzqt3flwn","https://etherscan.io/address/0xeef9220639F14E7A0FD825AAAd0574e5a8aD7A4B","https://blockchair.com/litecoin/address/ltc1q508qfkd09vyya6c5zkfx4r248pf3ezj9ngjdr2"],"categories":[],"sub_categories":[],"readme":"\n# BitGoSDK PHP\n\nBitGoSDK written in PHP. This SDK contains methods for easily interacting with the BitGo API.\n\n[![Latest Stable Version](https://poser.pugx.org/neto737/bitgosdk-php/version?style=for-the-badge)](https://packagist.org/packages/neto737/bitgosdk-php)\n[![Total Downloads](https://poser.pugx.org/neto737/bitgosdk-php/downloads?style=for-the-badge)](https://packagist.org/packages/neto737/bitgosdk-php)\n[![Latest Unstable Version](https://poser.pugx.org/neto737/bitgosdk-php/v/unstable?style=for-the-badge)](//packagist.org/packages/neto737/bitgosdk-php)\n[![License](https://poser.pugx.org/neto737/bitgosdk-php/license?style=for-the-badge)](https://packagist.org/packages/neto737/bitgosdk-php)\n[![PHP Version Require](https://poser.pugx.org/neto737/bitgosdk-php/require/php?style=for-the-badge)](https://packagist.org/packages/neto737/bitgosdk-php)\n\n## Requirements\n\n- PHP 7.0 or earlier with:\n  - cURL\n  - BCMath\n\n## Installation\n\nTo install the SDK, you will need to be using [Composer](http://getcomposer.org/) in your project. If you aren't using Composer yet, it's really simple! Here's how to install composer and the BitGoSDK PHP.\n\n```sh\n# Install Composer\ncurl -sS https://getcomposer.org/installer | php\n\n# Add the BitGoSDK as a dependency\nphp composer.phar require neto737/bitgosdk-php\n```\n\nNext, require Composer's autoloader, in your application, to automatically load the BitGoSDK in your project:\n\n```php\nrequire 'vendor/autoload.php';\n\nuse neto737\\BitGoSDK\\BitGoSDK;\n```\n\nOr if put the following in your `composer.json`:\n\n```json\n\"neto737/bitgosdk-php\": \"*\"\n```\n  \n## Example\n\n```php\nrequire 'vendor/autoload.php';\n\nuse neto737\\BitGoSDK\\BitGoSDK;\nuse neto737\\BitGoSDK\\Enum\\CurrencyCode;\n\n$bitgo = new BitGoSDK('YOUR_API_KEY_HERE', CurrencyCode::BITCOIN, false);\n$bitgo-\u003ewalletId = 'YOUR_WALLET_ID_HERE';\n\n$createAddress = $bitgo-\u003ecreateWalletAddress();\n```\n\n## BitGo Express\n\nIf you are going to use BitGo Express you have to run a BitGo Express node. You can find how to run your own BitGo Express node [here](https://github.com/BitGo/BitGoJS/blob/master/modules/express/README.md).\n\n## Attention\n\nKeep your cacert.pem always up to date. You can find updates on the site [curl.haxx.se](https://curl.haxx.se/docs/caextract.html).\n\n## Credits\n\n- [Neto Melo](https://github.com/neto737)\n\n## Donate\n\n[![Donate BTC](https://img.shields.io/badge/donate-BTC-ff9900.svg?style=for-the-badge)](https://www.blockchain.com/btc/address/bc1pduj90df9cs3md3gym3q809slfv2x5phnpv8xznajys5q3tlulnzqt3flwn)\n[![Donate ETH](https://img.shields.io/badge/donate-ETH-3C3C3D.svg?style=for-the-badge)](https://etherscan.io/address/0xeef9220639F14E7A0FD825AAAd0574e5a8aD7A4B)\n[![Donate LTC](https://img.shields.io/badge/donate-LTC-D3D3D3.svg?style=for-the-badge)](https://blockchair.com/litecoin/address/ltc1q508qfkd09vyya6c5zkfx4r248pf3ezj9ngjdr2)\n[![Donate with PayPal](https://img.shields.io/badge/donate-PayPal-blue.svg?style=for-the-badge)](https://www.paypal.com/donate/?business=T7RVRCXLZXB58\u0026no_recurring=0\u0026currency_code=USD)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneto737%2Fbitgosdk-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneto737%2Fbitgosdk-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneto737%2Fbitgosdk-php/lists"}