Merge branch 'master' into patch-1
This commit is contained in:
commit
8ba41a37b7
@ -6,6 +6,7 @@ php:
|
|||||||
- 7.1
|
- 7.1
|
||||||
- 7.2
|
- 7.2
|
||||||
- 7.3
|
- 7.3
|
||||||
|
- 7.4
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- nvm install 8
|
- nvm install 8
|
||||||
@ -25,4 +26,4 @@ script:
|
|||||||
- scripts/test.sh
|
- scripts/test.sh
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash) -t 8436848f-9a99-4b49-be60-629d7ff9a62c
|
- bash <(curl -s https://codecov.io/bash) -t 76a0abaf-bbc4-4829-b5b8-474f10a6b9e9
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# web3.php
|
# web3.php
|
||||||
|
|
||||||
[](https://travis-ci.org/sc0Vu/web3.php)
|
[](https://travis-ci.org/web3p/web3.php)
|
||||||
[](https://codecov.io/gh/sc0Vu/web3.php)
|
[](https://codecov.io/gh/web3p/web3.php)
|
||||||
[](https://gitter.im/web3-php/web3.php)
|
[](https://gitter.im/web3-php/web3.php)
|
||||||
[](https://github.com/sc0Vu/web3.php/blob/master/LICENSE)
|
[](https://github.com/web3p/web3.php/blob/master/LICENSE)
|
||||||
|
|
||||||
|
|
||||||
A php interface for interacting with the Ethereum blockchain and ecosystem.
|
A php interface for interacting with the Ethereum blockchain and ecosystem.
|
||||||
|
23
docker/php/Dockerfile-74
Normal file
23
docker/php/Dockerfile-74
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
FROM php:7.4-alpine
|
||||||
|
|
||||||
|
MAINTAINER Peter Lai <alk03073135@gmail.com>
|
||||||
|
|
||||||
|
COPY composer-setup.php composer-setup.php
|
||||||
|
# COPY php.ini-production $PHP_INI_DIR/php.ini
|
||||||
|
|
||||||
|
RUN apk update && \
|
||||||
|
apk add git
|
||||||
|
|
||||||
|
# Install gmp
|
||||||
|
Run apk add gmp-dev && \
|
||||||
|
docker-php-ext-install gmp
|
||||||
|
|
||||||
|
# Install nodejs
|
||||||
|
# Run apk add --update nodejs nodejs-npm
|
||||||
|
|
||||||
|
# Install composer
|
||||||
|
RUN php composer-setup.php && \
|
||||||
|
php composer-setup.php --install-dir=/usr/bin --filename=composer && \
|
||||||
|
php -r "unlink('composer-setup.php');"
|
||||||
|
|
||||||
|
WORKDIR /app
|
Loading…
Reference in New Issue
Block a user