Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.phpunit.result.cache
/vendor/
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ This allows an unprecedented level of flexibility. Rather than having to conside

Transphporm gives both designers and developers an unprecedented level of flexibility that just isn't possible with traditional template engines.

# Requirements

Transphporm requires at least PHP 7.3 to run and is fully supported up to PHP 8.1.

# Installation

The preferred method of installing Transphporm is via Composer. Transphporm is available from Packagist as:
Expand Down Expand Up @@ -1179,6 +1183,7 @@ This allows a top down approach. Most frameworks work on a bottom up approach wh

# Credits

Transphporm was originally developed by Tom Butler ( @TomBZombie ) with additional feature implementation, bugfixes and suggestions by Richard Sollee ( @solleer )

Transphporm was originally developed by Tom Butler ( @TomBZombie ). Additional features, bugfixes and suggestions by:

- Richard Sollee ( @solleer )
- Nathan Bishop ( @nbish11 )
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
}
],
"require": {
"php": ">=7.0.0"
"php": "^7.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.20"
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {"Transphporm\\": "src/"}
Expand Down
Loading