Skip to content

Commit

Permalink
Merge pull request #2 from sc0Vu/master
Browse files Browse the repository at this point in the history
0.1
  • Loading branch information
sc0Vu authored May 30, 2018
2 parents 74a7886 + 73c7e91 commit 8736ef0
Show file tree
Hide file tree
Showing 7 changed files with 2,064 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
sudo: required

language: php

php:
- 7.1
- 7.2

install:
- composer install

notifications:
email:
recipients:
- [email protected]
on_success: always
on_failure: always

script:
- vendor/bin/phpunit --coverage-clover=coverage.xml

after_success:
- bash <(curl -s https://codecov.io/bash) -t d2ad6fff-f9bb-452b-a25c-1e13cdd81270
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "web3p/ethereum-util",
"description": "A collection of utility functions for Ethereum written in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "sc0Vu",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"Web3p\\EthereumUtil\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/"
}
},
"require": {
"PHP": "^7.1",
"kornrunner/keccak": "~1",
"simplito/elliptic-php": "1.0.3"
}
}
Loading

0 comments on commit 8736ef0

Please sign in to comment.