Skip to content

Commit b6de41b

Browse files
committed
v2.0.0
1 parent d58aecc commit b6de41b

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: php
33
dist: trusty
44

55
php:
6-
- '5.4'
7-
- '5.5'
86
- '5.6'
97
- '7.0'
108
- '7.1'

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Form
99
- *Dep*: Deprecated.
1010
- *Fix*: Fixed.
1111

12+
2.0.0 [2020-02-11]
13+
------------------
14+
15+
- Rem: Supporting PHP 5.4 and 5.5.
16+
- Fix: Dependencies.
17+
1218
1.0.1 [2017-11-04]
1319
------------------
1420

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.6
1+
FROM alpine:3.10
22

33
RUN apk update
44

@@ -15,7 +15,8 @@ RUN apk add --no-cache php7 \
1515
php7-zlib \
1616
php7-dom \
1717
php7-posix \
18-
php7-openssl
18+
php7-openssl \
19+
php7-simplexml
1920

2021
RUN sed -ie 's/^;zend/zend/' /etc/php7/conf.d/xdebug.ini
2122

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Form
22
====
33

44
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!
66

77

88
[![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
350350
351351
```bash
352352
$ docker-compose up -d
353-
$ docker-compose run php sh
353+
$ docker-compose exec php sh
354354
$ composer test:run
355355
```
356356

composer.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@
88
},
99
{
1010
"name": "Vasily Velosloodcev",
11-
"email": "bupy765@gmail.com"
11+
"email": "vasily.belosloodcev@gmail.com"
1212
}
1313
],
14+
"version": "2.0.0",
1415
"license": "MIT",
1516
"require": {
16-
"php": ">=5.4"
17+
"php": ">=5.6"
1718
},
1819
"require-dev": {
1920
"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"
2324
},
2425
"autoload": {
2526
"psr-0": {

docker-compose.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ services:
88
php:
99
build: .
1010
working_dir: /var/www
11-
environment:
12-
docker: "true"
11+
tty: true
1312
volumes:
1413
- .:/var/www
1514
- logs:/var/www/logs

phpunit.xml

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
53
bootstrap="./tests/bootstrap.php"
64
verbose="true"
75
colors="true">

0 commit comments

Comments
 (0)