Skip to content

Commit

Permalink
tested on PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Nov 6, 2020
1 parent c80cca8 commit f296247
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0snapshot

before_install:
# turn off XDebug
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
- stage: Code Coverage


sudo: false
dist: xenial

cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=5.6.0",
"php": ">=5.6 <8.1",
"nette/component-model": "~2.3",
"nette/http": "^2.3.8",
"nette/utils": "^2.4.6"
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Why should you bother setting up framework for a simple web form? You won't have

Nette Framework puts a great effort to be safe and since forms are the most common user input, Nette forms are as good as impenetrable. All is maintained dynamically and transparently, nothing has to be set manually. Well-known vulnerabilities such as Cross Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) are filtered, as well as special control characters. All inputs are checked for UTF-8 validity. Every multiple-choice, select boxes and similar are checked for forged values upon validating. Sounds good? Let's try it out.

It requires PHP version 5.6 and supports PHP up to 8.0.


Documentation
-------------
Expand Down

0 comments on commit f296247

Please sign in to comment.