├── .coveralls.yml ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── example ├── create_basic_chain.php ├── example.gif └── load_chain.php ├── phpunit.xml ├── src └── OhMyBrew │ └── Blockchain │ ├── Block.php │ └── Blockchain.php └── tests ├── BlockTest.php ├── BlockchainTest.php └── fixtures └── d6f31977b058c45a300b0ebc824b91850f3bd7907f31e5696ad6c5601b158fb4.json /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | /bin 4 | /example/*.json 5 | /build 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/composer.json -------------------------------------------------------------------------------- /example/create_basic_chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/example/create_basic_chain.php -------------------------------------------------------------------------------- /example/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/example/example.gif -------------------------------------------------------------------------------- /example/load_chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/example/load_chain.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/OhMyBrew/Blockchain/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/src/OhMyBrew/Blockchain/Block.php -------------------------------------------------------------------------------- /src/OhMyBrew/Blockchain/Blockchain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/src/OhMyBrew/Blockchain/Blockchain.php -------------------------------------------------------------------------------- /tests/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/tests/BlockTest.php -------------------------------------------------------------------------------- /tests/BlockchainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/tests/BlockchainTest.php -------------------------------------------------------------------------------- /tests/fixtures/d6f31977b058c45a300b0ebc824b91850f3bd7907f31e5696ad6c5601b158fb4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnikyt/Blockchain-PHP/HEAD/tests/fixtures/d6f31977b058c45a300b0ebc824b91850f3bd7907f31e5696ad6c5601b158fb4.json --------------------------------------------------------------------------------