Skip to content

Commit

Permalink
Update PHP requirement in Phar manifest (#1650)
Browse files Browse the repository at this point in the history
composer.json states `^7.3 || ^7.4 || ^8.0` as PHP version requirement,
so the Phar is supposed to be compatible with PHP 8.0 as well.  Since
`^7.3` implies compatibility with PHP 7.4, we don't add it explicitly
here.
  • Loading branch information
cmb69 authored Nov 28, 2021
1 parent 1126518 commit b4fb96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<license type="LGPL-3.0" url="https://github.com/phingofficial/phing/blob/main/LICENSE"/>
</copyright>
<requires>
<php version="^7.3"/>
<php version="^7.3 || ^8.0"/>
</requires>
</phar>

0 comments on commit b4fb96e

Please # to comment.