File tree 7 files changed +18
-15
lines changed
7 files changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ language: php
3
3
dist : trusty
4
4
5
5
php :
6
- - ' 5.4'
7
- - ' 5.5'
8
6
- ' 5.6'
9
7
- ' 7.0'
10
8
- ' 7.1'
Original file line number Diff line number Diff line change 9
9
- * Dep* : Deprecated.
10
10
- * Fix* : Fixed.
11
11
12
+ 2.0.0 [ 2020-02-11]
13
+ ------------------
14
+
15
+ - Rem: Supporting PHP 5.4 and 5.5.
16
+ - Fix: Dependencies.
17
+
12
18
1.0.1 [ 2017-11-04]
13
19
------------------
14
20
Original file line number Diff line number Diff line change 1
- FROM alpine:3.6
1
+ FROM alpine:3.10
2
2
3
3
RUN apk update
4
4
@@ -15,7 +15,8 @@ RUN apk add --no-cache php7 \
15
15
php7-zlib \
16
16
php7-dom \
17
17
php7-posix \
18
- php7-openssl
18
+ php7-openssl \
19
+ php7-simplexml
19
20
20
21
RUN sed -ie 's/^;zend/zend/' /etc/php7/conf.d/xdebug.ini
21
22
Original file line number Diff line number Diff line change 2
2
====
3
3
4
4
This is fork of [ adamwathan/form] ( https://github.com/adamwathan/form ) . There is only HTML-elements builder
5
- without any support frameworks. Extension are supporting PHP from 5.4 to 7.x!
5
+ without any support frameworks. Extension are supporting PHP from 5.6 to 7.x!
6
6
7
7
8
8
[ ![ Latest Stable Version] ( https://poser.pugx.org/bupy7/php-html-form/v/stable )] ( https://packagist.org/packages/bupy7/php-html-form )
@@ -350,7 +350,7 @@ Run tests
350
350
351
351
```bash
352
352
$ docker-compose up -d
353
- $ docker-compose run php sh
353
+ $ docker-compose exec php sh
354
354
$ composer test:run
355
355
```
356
356
Original file line number Diff line number Diff line change 8
8
},
9
9
{
10
10
"name" : " Vasily Velosloodcev" ,
11
- "email" : " bupy765 @gmail.com"
11
+ "email" : " vasily.belosloodcev @gmail.com"
12
12
}
13
13
],
14
+ "version" : " 2.0.0" ,
14
15
"license" : " MIT" ,
15
16
"require" : {
16
- "php" : " >=5.4 "
17
+ "php" : " >=5.6 "
17
18
},
18
19
"require-dev" : {
19
20
"mockery/mockery" : " ~0.9" ,
20
- "satooshi /php-coveralls" : " ^1 .0" ,
21
- "phpunit/phpunit" : " ^4.8 " ,
22
- "friendsofphp/php-cs-fixer" : " ^2.0 "
21
+ "php-coveralls /php-coveralls" : " ^2.2 .0" ,
22
+ "phpunit/phpunit" : " >=5.5 <6.0.0 " ,
23
+ "friendsofphp/php-cs-fixer" : " ^2.16.1 "
23
24
},
24
25
"autoload" : {
25
26
"psr-0" : {
Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ services:
8
8
php :
9
9
build : .
10
10
working_dir : /var/www
11
- environment :
12
- docker : " true"
11
+ tty : true
13
12
volumes :
14
13
- .:/var/www
15
14
- logs:/var/www/logs
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.8/phpunit.xsd"
5
3
bootstrap =" ./tests/bootstrap.php"
6
4
verbose =" true"
7
5
colors =" true" >
You can’t perform that action at this time.
0 commit comments