-
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.
Fix dynamic property deprecations / Upgrade php min versions
- Loading branch information
Showing
5 changed files
with
76 additions
and
85 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,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" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.hugo_build.lock |
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