-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from thephpleague/fix-dynamic-property-deprec…
…ation Fix dynamic property deprecations / Upgrade php min versions
- Loading branch information
Showing
8 changed files
with
1,914 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
build | ||
composer.lock | ||
vendor | ||
doc/public | ||
doc/data/versions.json | ||
/vendor | ||
/doc/public | ||
/doc/data/versions.json | ||
/doc/.hugo_build.lock | ||
.generated | ||
.phpunit.result.cache | ||
.phpunit.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
{ | ||
"name": "league/plates", | ||
"description": "Plates, the native PHP template system that's fast, easy to use and easy to extend.", | ||
"keywords": [ | ||
"league", | ||
"package", | ||
"templating", | ||
"templates", | ||
"views" | ||
], | ||
"homepage": "https://platesphp.com", | ||
"license": "MIT", | ||
"authors" : [ | ||
{ | ||
"name": "Jonathan Reinink", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "RJ Garcia", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require" : { | ||
"php": "^7.1|^8.0" | ||
"name": "league/plates", | ||
"description": "Plates, the native PHP template system that's fast, easy to use and easy to extend.", | ||
"keywords": [ | ||
"league", | ||
"package", | ||
"templating", | ||
"templates", | ||
"views" | ||
], | ||
"homepage": "https://platesphp.com", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jonathan Reinink", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
"require-dev": { | ||
"mikey179/vfsstream": "^1.6", | ||
"phpunit/phpunit": "^9.5", | ||
"squizlabs/php_codesniffer": "^3.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"League\\Plates\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"League\\Plates\\Tests\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "3.0-dev" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "phpunit --testdox --colors=always", | ||
"docs": "hugo -s doc server" | ||
{ | ||
"name": "RJ Garcia", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0" | ||
}, | ||
"require-dev": { | ||
"mikey179/vfsstream": "^1.6", | ||
"phpunit/phpunit": "^11.4", | ||
"squizlabs/php_codesniffer": "^3.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"League\\Plates\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"League\\Plates\\Tests\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "3.0-dev" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "phpunit --testdox --colors=always", | ||
"docs": "hugo -s doc server" | ||
} | ||
} |
Oops, something went wrong.