{"id":18406891,"url":"https://github.com/nbobtc/bitcoindbundle","last_synced_at":"2025-04-07T08:32:30.454Z","repository":{"id":6218430,"uuid":"7449738","full_name":"nbobtc/BitcoindBundle","owner":"nbobtc","description":"Allows you to use the bitcoind service in a symfony2 project","archived":false,"fork":false,"pushed_at":"2014-12-11T17:24:27.000Z","size":213,"stargazers_count":15,"open_issues_count":1,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T15:48:57.174Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/nbobtc.png","metadata":{"files":{"readme":"README.markdown","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-01-05T00:49:02.000Z","updated_at":"2023-09-30T18:06:25.000Z","dependencies_parsed_at":"2022-08-23T13:51:02.720Z","dependency_job_id":null,"html_url":"https://github.com/nbobtc/BitcoindBundle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbobtc%2FBitcoindBundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbobtc%2FBitcoindBundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbobtc%2FBitcoindBundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbobtc%2FBitcoindBundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nbobtc","download_url":"https://codeload.github.com/nbobtc/BitcoindBundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247620480,"owners_count":20968222,"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":[],"created_at":"2024-11-06T03:11:17.394Z","updated_at":"2025-04-07T08:32:29.950Z","avatar_url":"https://github.com/nbobtc.png","language":"PHP","readme":"NbobtcBitcoindBundle\n====================\n\nUsed for symfony2 projects that want to use a bitcoind server.\n\n# Requirements\n\n* [bitcoind](https://en.bitcoin.it/wiki/Bitcoind)\n* [nbobtc/bitcoind-php](https://github.com/nbobtc/bitcoind-php) (Included in this packages `composer.json` file)\n\n# Installation\n\nEdit your `composer.json` file and add:\n\n\n    \"require\": {\n        \"nbobtc/bitcoind-bundle\": \"\u003e=2.1,\u003c2.4\"\n    }\n\nNext you will need to add it in your `app/AppKernel.php` file.\n\n    // app/AppKernel.php\n    public function registerBundles()\n    {   \n        $bundles = array(\n            // ...\n            new Nbobtc\\Bundle\\BitcoindBundle\\BitcoindBundle(),\n            // ...\n        );  \n\n        return $bundles;\n    }\n\nNext up is the configuration part. Edit `app/config/config.yml`.\n\n    bitcoind:             \n        schema:               http\n        username:             ~\n        password:             ~\n        host:                 127.0.0.1\n        port:                 8332\n\nMake sure your server is up and running and it should all just work.\n\nI've included some doctrine things that I have used that have been very helpful.\nYou will need to update your database if you want to use the wallet manager.\n\n    php app/console doctrine:schema:update --force\n\n# Configuration\n\nConfiguring this bundle is pretty straight forward and is outlined in the installation\ninstructions. This section will show how I suggest you setup your configuration.\n\n    # app/config/parameters.dist.yml\n    # File is included in your repository\n    parameters:\n        bitcoind_schema:   http\n        bitcoind_username: ~\n        bitcoind_password: ~\n        bitcoind_host:     localhost\n        bitcoind_port:     8332\n\nThis is the same setup as your `parameters.yml` file. However you should have this\nfile ignored.\n\n    # app/config/config.yml\n    bitcoind:             \n        schema:   %bitcoind_schema%\n        username: %bitcoind_username%\n        password: %bitcoind_password%\n        host:     %bitcoind_host%\n        port:     %bitcoind_port%\n\nThat's it. Your `parameters.yml` file will have the information about your server.\n\n# Usage\n\nYou now have access to a bitcoind service.\n\n    // In a controller\n    $bitcoind = $this-\u003eget('bitcoind');\n\nFor more information on how to use the bitcoind wrapper see the [nbobtc/bitcoind-php](https://github.com/nbobtc/bitcoind-php)\nproject.\n\n# Wallet Manager\n\nThis bundle comes with a wallet manager that you can use for created new addresses, payments,\nand managing many other things related to bitcoin.\n\n    $manager = $this-\u003econtainer-\u003eget('manager.bitcoin_wallet');\n\n@TODO More documentation about using the wallet manager\n\n# License\n\nCopyright (C) 2013 Joshua Estes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbobtc%2Fbitcoindbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnbobtc%2Fbitcoindbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbobtc%2Fbitcoindbundle/lists"}