Skip to content

Commit

Permalink
chore!: Drop PHP 7.3 support (#217)
Browse files Browse the repository at this point in the history
See #215 for discussion.
  • Loading branch information
meyfa authored Feb 15, 2024
1 parent aa047de commit ede4b5c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 - 2022 Fabian Meyer and contributors
Copyright (c) 2015 - 2024 Fabian Meyer and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Contributions are very welcome. [Find out how to contribute](#contributing).

PHP-SVG is free of dependencies. All it needs is a PHP installation satisfying the following requirements:

* PHP version 7.3 or newer. This library is tested against all versions up to (and including) PHP 8.3.
* PHP version 7.4 or newer. This library is tested against all versions up to (and including) PHP 8.3.
* If you wish to load SVG files, or strings containing SVG code, you need to have the
['simplexml' PHP extension](https://www.php.net/manual/en/book.simplexml.php).
* If you wish to use the rasterization feature for converting SVGs to raster images (PNGs, JPEGs, ...), you need to
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
}
],
"require": {
"php": ">=7.3.0"
"php": ">=7.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.26",
"phpunit/phpunit": "^9.6.16",
"meyfa/phpunit-assert-gd": "^v3.0.0",
"phpmd/phpmd" : "^2.13.0"
"phpmd/phpmd" : "^2.15.0"
},
"suggest": {
"ext-gd": "Needed to rasterize images",
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd">
<description>The coding standard for meyfa/php-svg</description>

<config name="php_version" value="70300" />
<config name="php_version" value="70400" />

<file>autoloader.php</file>
<file>src</file>
Expand Down

0 comments on commit ede4b5c

Please sign in to comment.