Skip to content

Commit

Permalink
NTO-180 merged upstream changes (#10)
Browse files Browse the repository at this point in the history
* Add docker compose

* Add apcu for PHP 5.5+
* Disable APC on PHP 7+ as APCu 5 is not supported
* Add ability to use a custom test runtime

Co-authored-by: Thomas <th@it-solutions-hirsch.de>

* Use GitHub actions for Continuous Integration tests

Remove TravisCI integration

* Fix test for /bin/ls file mimetype guessing, using application/x-pie-executable

* PHP 8.1 > internal_method_return_types
https://wiki.php.net/rfc/internal_method_return_types

PHP 8.0 added return type for abstract methods on Iterator, ArrayAccess, Countable, IteratorAggregate
PHP 8.1 made non implementation as a Deprecated Warning
PHP 9.0 (no release date at this moment) will drop the support.

Temporary Fix : adding this Attribute
Will drop the Deprecated warning.

Adding return type will break compatibility before PHP 7.4,
Return type has been added on PHP 7.0, but "mixed" special type is required, and it has been added on PHP 7.4.
In order to be compatible with future PHP 9.0, once it will be release, we will have to drop the support to PHP Version before 7.4

Currently a lot of Unix distribution in LTS are running a PHP Version older than 7.4 so moving to the final solution of "add return type" should break a lot of setup for the moment.

* PHP 8.1 > Serializable Phase Out
https://wiki.php.net/rfc/phase_out_serializable

PHP 7.4 add a new Serialize mecanism
PHP 8.1 made old method, "Serializable implementation" deprecated
PHP 9.0 (no release date at this moment) will drop the support.

Temporary Fix: Adding both method serialize/unserialize and __serialize/__unserialize

In order to be compatible with future PHP 9.0, once it will be release, we will have to drop the support to PHP Version before 7.4.

Currently a lot of Unix distribution in LTS are running a PHP Version older than 7.4 so moving to the final solution of "add return type" should break a lot of setup for the moment.

Each class has been serialized/unserialized and compared on PHP 8.1.2 and 5.6.30

* PHP 8.0 & 8.1 > Deprecated of null to non-nullable internal function parameters

Mainly ensure use of string instead of null / false by casting the variable into (string)
Also fix method/function arguments with default value must be at the end.

Thanks to @teymour
FriendsOfSymfony1@cba71a4

* PHP 8.1 > strftime deprecated.

2 possible workaround, use partial implementation with php date method or use IntlDateFormatter.
As symfony1 is not intended to evolve, it should not rely on currently unused PHP-Extension (nor update composer.json).

I propose a fix to replace "strftime" by "date", with a translation of format for PHP 8.1+

It will lose the ability of translating date of logs (does anybody use it ?) and it will deprecated a few strftime format (probably not used)
Performances should remains OK

I only tested it with a few formats (the default one and a few others)
If you need some missing strftime formats, please add them.

* PHP 8.1 > Unit Test

sfException> fileExcerpt file can be null, and PHP 8.1 do not allow null on is_readable()

sfBrowser> Move sf_test conf before getContext, because getContext can throw some sfException, which will raise some printStackTrace, hidden by another Exception "header already sent ..."

lime.php> some trace can have no "file" (internal methods call)
lime.php> handle_exception can handle Error/Throwable, not avaialble under php7.2: remove typing

sfTestFunctionalBase> can throw exception

Fix Select Unit test NewActivePendingExpired.
DomDocument on recent php return a list of values, not concatened ones.

Fix SessionStorage UnitTest.

sfSessionStorage could not be restarted.
Flag $sessionStarted as false when shutdown to avoid error during unit test which can start several sfSessionStorage

Storage need to be shutdown to avoid:
PHP Warning:  session_name(): Session name cannot be changed when a session is active

* Fix lime message: "An uncaught exception has been thrown" do not have "error" value

uncaught exception does not populate error field

* PHP 8.1 > uasort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero

* Fix ValueError: DOMDocument::loadHTML(): Argument #1 ($source) must not be empty

* PHP 8.0 > fread()/count() behavior

ValueError: fread(): Argument #2 ($length) must be greater than 0

TypeError: count(): Argument #1 ($value) must be of type Countable|array Foo Given
Use Symfony Polyfill symfony/polyfill@d330c00

TypeError: count(): Argument #1 ($value) must be of type Countable|array, string given
Do not use Symfony pollyfill, is_array is enought

* Fix Declaration of sfPearRestTest::downloadHttp($url, $lastmodified = null, $accept = false) must be compatible with sfPearRest::downloadHttp($url, $lastmodified = null, $accept = false, $channel = false)

* PHP 8.0 > mktime update

8.0.0 	hour is no longer optional.
8.0.0 	minute, second, month, day and year are nullable now.

* Fix sfWebResponse->getContentType() return a string not an array

* Fix sfDoctrineTester, string cannot be accessed as array

* PHP 8.0 > Fix is_numeric behavior with trailing empty char
Numeric strings ending with whitespace ("42 ") will now return true. Previously, false was return instead.

Use same fix has main maintened Yaml lib :
symfony/yaml@4152e36
+ performance improvement
symfony/yaml@2b5f2ae

* PHP 8.0 > String to Number Comparison.
When $previousIndent was equal to 0, and $matches['indent'] = "    "

PHP(before 8.0)> (0 != "    ") ==> false
PHP8.0+ > (0 != "     ")  ==> true

In order to keep "false" value we avoid "0" as a valid value.

More details here why here:
https://www.php.net/manual/en/migration80.incompatible.php

* PHP 8.1 > Change support to PHP 8.1

* Fix UnitTest application/x-sharedlib

/bin/ls can be reported as:
- application/x-sharedlib
- application/x-executable
- application/x-pie-executable

* PHP 8.1 > mysqli_report revert to off
https://php.watch/versions/8.1/mysqli-error-mode

* Refactor code and apply Coding Style fixes

* PHP 8.1 > Better MYSQLI_REPORT_OFF implementations for php8.1 compat

Thanks @mentalstring

* PHP 8.1 > remove full_path from uploads added on PHP v8.1

* Fix use of null on string parameter on multiple classes

* Github Actions: enable testing on PHP v8.0 and v8.1 (for PRs too)

* test environment for php 8.2

* PHP 8.2 > Using ${var} in strings is deprecated, use {$var} instead.

* PHP 8.2 > Creation of dynamic property Class::$property is deprecated

* PHP 8.0 > Uncaught ArgumentCountError: Too few arguments to function

* PHP 8.0 > Trying to access array offset on value of type bool

* PHP 8.0 > Passing null to parameter #1 ($haystack) of type string is deprecated

* set symfony version to 1.5.15-dev

* PHP 8.0 > Class name must be a valid object or a string in case the controller does not exist.

* PHP 8.0 > Fix undefined array key

* PHP 8.1 > Fix some more null on string parameter

* Prepared release 1.5.15

* Add(changelog) Add v1.5.15 release date to Changelog file

* Add(versioning) Add v1.5.16-dev as next release

* Fix(deprecations) Fix deprecations in sfMessageSource_Aggregate (FriendsOfSymfony1#277)

* Fix(deprecations) Fix deprecations in sfMessageSource_Aggregate, add return types from implemented sfIMessageSource

* Add(linting) Add code linting to GitHub workflow, use php-cs-fixer

* Fix(php-cs) Fix php-cs styles according to configuration

* Add(gitattributes) Add .gitattributes to repository

* imported upstream php-cs-fixer configuration

* initial pass of php-cs-fixer

* updated config

* updated config

* updated config

* updated config

* imported routing fixes from `master`

* removed `7.4` and `8.0` test targets

* fixed `long_to_shorthand_operator` warnings

* temporarily disabled testing

* removed route caching

* fixed coding standards issues

* re-fixed more coding standards issues

* Fix: avoid creating dynamic property $options in sfViewCacheManager (FriendsOfSymfony1#290) 

Dynamic properties are deprecated since PHP8.2

* Update(github) Update github workflows, include cache for composer install

* Fix(php-cs-fixer) Fix php-cs-fixer warnings, according to new checks

* add php8.3

* Fix(php-cs-fix) fix php-cs-fix single_space_around_construct warning

* Fix(php-cs-fixer) Fix php-cs-fixer to v3.45 and apply code fixes

* Fix(deprecation) preg_match_all requires string parameter (FriendsOfSymfony1#298)

* Fix APC cache tests

- Using negative TTLs to force the immediate expiration of keys, while
  convenient in tests, doesn't work consistently with APC and is an
  undocumented feature. Using a low TTL and sleep() is what guarantees
  that it works for APC. See krakjoe/apcu#184

- The setting apc.use_request_time interferes with key expiration when
  running on the CLI. Making sure it always has a sensible value for
  running the tests. See krakjoe/apcu#392

* Add APCu support

Support for the APCu extension (through sfAPCuCache) as an alternative
to APC, which no longer works with recent versions of PHP.

* Fix sfCacheSessionStorageTest with PHP>=7.2

From PHP 7.2 onward, session functions are stricter and may not work
if output/headers have already been sent out. Using output buffering
prevents this issue.

* Remove test dependency on APC

Replace the use of sfAPCCache with sfFileCache in
sfCacheSessionStorageTest so that it doesn't depend on APC being
available.

* Fix deprecation on stropos()  usage on sfDebug::shortenFilePath (FriendsOfSymfony1#299)

Fix PHP v8.x deprecation on strpos() usage with `null` as first parameter

* Fix strpos() deprecation on sfCacheSessionStorage check for cookie

* Fix setrawcookie() deprecation on null parameter (FriendsOfSymfony1#304)

* Fix str_replace() deprecated null parameter on sfNumberFormat

* Declare $params var

* Replace default with 0

* removed some automated testing for old php versions

* updated `php-cs-fixer` config

* Update README

Fix build badge, update supported PHP version and other minor tweaks.

* Fix link to GitHub pipeline badge

* fix(config) sfCacheConfigHandler: There is no fourth argument. Nice catch phpstan!

* Fix PHP8.1 sfForm - Unsupported operand types: array + null on sfForm::updateValues()

Avoid error:
Fatal error: Uncaught TypeError: Unsupported operand types: array + null in lib\form\sfForm.class.php:319

Step to reproduce :
$form = new sfForm();
$form->updateValues(array('foo' => 'value'));

PHP 5.3 coding style

May use sfForm::getValues(), but as sfForm::updateValues() is a hack, it could be used before bind ($this->isBound = true);

* fix(phpdoc) remove html code from throws phpdoc. phpstan don't like this

* fix(phpdoc) remove version tag

* applied php-cs-fixer

* added missing properties

* PHP 8.3 deprecated errors fixed (FriendsOfSymfony1#320)

* Update min PHP requirement to v7.4 or v8.1

* Remove PHP v8.0 from CI workflow

* Updated gh workflow to use latest actions

* Backported display_errors-handling to sf1

* removed duplicate class properties

* Set min versions of swiftmailer to 5.4.13 and 6.2.5 and updated swiftmailer submodule (FriendsOfSymfony1#331)

* Update min versions of swiftmailer to v5.4.13 or v6.2.5
* Update swiftmailer code on submodule to v5.4.13

* Sync changelog with latest releases (FriendsOfSymfony1#337)

* Sync changelog with latest releases

* Remove(legacy): Remove unsupported PHP docker images

* Remove(legacy): drop sfAPCCache cache as apc extension does not exist anymore

Please use sfAPCUCache instead

* Fix(docblock): fix typo in check_configuration.php docblock

* Update(check-config): use PHP constant for version check on check_configuration.php file

* Remove(legacy): delete checks for 'magic_quotes_gpc' and 'register_globals' ini settings, as removed on PHP v5.4

* Remove(legacy): delete EAccelerator cache, the extension is not existing for php v7.4

See: https://github.com/eaccelerator/eaccelerator, where the following
message is shown:

> This project is deprecated and does not work with anything newer than PHP 5.3.
> Please use a recent version of PHP with OPcache instead!

* Remove(legacy): drop XCache support, as the extension is not available for PHP >= 7.4

* Remove(legacy): delete check for PHP < 5.2 in tests for mime_content_type bug

* Remove(legacy): drop PHP v5.3 check for SQLite version match

* Remove(legacy): drop PHP v5.4 check and compatibility layer on sfWebRequest

* Remove(legacy): drop PHP v5.3 check on sfRoute

This removes a preliminary fix for a legacy PHP 5.3. issue with regexp excaping
PHP bug reference: http://bugs.php.net/bug.php?id=47229

* Update: Update php-cs-fixer to v3.51

Apply rule fixes

* Update: php-cs-fixer, enable short array syntax

* Update: move php-cs-fixer cache under .cache folder

* Update: run php-cs-fixer on PHP v7.4 as min supported version

* Update: GitHub actions to run php-cs-fixer only on relevant changed files

* Hotfix: Add type checking for deserialized data in sfParameterHolder and sfNamespacedParameterHolder (CVE-2024-28861)

* Update php-cs-fixer to v3.52

* Remove(legacy): drop sf*Cache implementations for APC, XCache and EAccelerator extensions

* Phpstan: fix warnings on sfAPCiCache implementation, add docblocks and returns

* Phpstan: fix warnings on sfFileCache and sfMemcache implementation, add missing returns

* Phpstan: fix missing sfTask* return statement

* [widget] fix return statement missing (FriendsOfSymfony1#349)

* [validator] fix return statement missing (FriendsOfSymfony1#352)

* [view] fix return statement missing on ParamHolder and CacheManager (FriendsOfSymfony1#350)

* [task] Fix return statement missing on some tasks (FriendsOfSymfony1#353)

* [util] fix missing return statement and docblock on sfContext class (FriendsOfSymfony1#351)

* applied upstream php-cs-fixer configuration

* corrected json format

* use `php8.2` when linting

* don't build php8.1

* reverted many changes back to upstream equivalents

* removed upstream submodule

* replaced submodule with our fork

* updated tests to match custom functionality

* only test php82

* corrected number of expected tests

* only use php8.2 for github actions

* explicitly apply `nullable_type_declaration_for_default_null_value`

* attributes don't use `\`

* corrected method signatures

---------

Co-authored-by: Alexandre Quercia <alquerci@email.com>
Co-authored-by: Thomas <th@it-solutions-hirsch.de>
Co-authored-by: Emanuele Panzeri <thepanz@gmail.com>
Co-authored-by: Tybaze <tybaze@users.noreply.github.com>
Co-authored-by: Paulo Magalhaes <mentalstring@gmail.com>
Co-authored-by: Thomas A. Hirsch <thomas.hirsch@vema-eg.de>
Co-authored-by: Karoly Gossler <connor@connor.hu>
Co-authored-by: Vincent Mariani <541354+vimar@users.noreply.github.com>
Co-authored-by: iricketson <iricketson@users.noreply.github.com>
Co-authored-by: Ian Ricketson <ian@trackops.com>
Co-authored-by: Sergei Miami <miami@blackcrystal.net>
Co-authored-by: darkpills <>
  • Loading branch information
12 people committed Mar 28, 2024
1 parent a9546b2 commit 1140aa1
Show file tree
Hide file tree
Showing 954 changed files with 69,293 additions and 75,641 deletions.
68 changes: 68 additions & 0 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
ARG PHP_VERSION
FROM php:${PHP_VERSION}-cli

RUN docker-php-ext-install pdo
RUN docker-php-ext-install pdo_mysql

# Install mbstring PHP extension
#
RUN set -eux; \
apt-get update; \
apt-get install -y --no-upgrade --no-install-recommends \
libonig-dev \
; \
\
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
\
docker-php-ext-install mbstring

# Install APCu PHP extension
#
ARG APCU_VERSION
RUN set -eux; \
\
test x"" = x"${APCU_VERSION}" || { \
pecl install apcu-${APCU_VERSION}; \
docker-php-ext-enable apcu; \
\
rm -r /tmp/pear; \
}

# Install memcache PHP extension
#
ARG MEMCACHE_VERSION
RUN set -eux; \
buildDeps=' \
libzip-dev \
'; \
apt-get update; \
apt-get install -y --no-upgrade --no-install-recommends \
$buildDeps \
; \
\
pecl install memcache-${MEMCACHE_VERSION}; \
docker-php-ext-enable memcache; \
\
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=true \
$buildDeps \
; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
rm -r /tmp/pear

# For consistent mime type file guesser
RUN set -eux; \
distFilePath=`which file`; \
\
mv ${distFilePath} ${distFilePath}.dist; \
{ \
echo '#! /bin/sh -eu'; \
echo ''; \
echo "${distFilePath}"'.dist "$@" | sed -e s,application/x-pie-executable,application/x-executable,g'; \
} | tee ${distFilePath}; \
\
chmod +x ${distFilePath}; \
\
file /bin/ls --mime | grep application/x-executable; \
:;
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ root = true

[*]
indent_style = space
indent_size = 2
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[.github/**.yml]
indent_size = 2
indent_style = space
5 changes: 5 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#
# Environment variables used by docker-compose for test.
#
# Copy to `.env` in order to use it.
#
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.docker/ export-ignore
.editorconfig export-ignore
.env.dist export-ignore
.gitattributes export-ignore
.github/ export-ignore
.gitignore export-ignore
.php-cs-fixer.dist.php export-ignore
docker-compose.yml export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
tests/ export-ignore
59 changes: 59 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: "Continuous Integration"

on:
push:
branches:
- master
pull_request:

env:
fail-fast: true

jobs:
tests:
name: "Symfony1 Tests"
runs-on: "ubuntu-latest"

strategy:
matrix:
php-version:
- "8.2"
memcached-version:
- "1.6"

services:
memcached:
image: "memcached:${{ matrix.memcached-version }}"

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: "true"

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
extensions: apcu
ini-values: apc.enable_cli=1

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer install --prefer-dist

- name: Run Check configuration
run: php data/bin/check_configuration.php

- name: Run Tests
run: php data/bin/symfony symfony:test --trace
43 changes: 43 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "Code Linting"
on:
push:
paths:
- .php-cs-fixer.dist.php
- autoload.php
- lib/**
- data/**
- tests/**
branches:
- master
pull_request:
paths:
- .php-cs-fixer.dist.php
- autoload.php
- lib/**
- data/**
- tests/**

jobs:
php-cs-fixer:
name: 'PHP-CS-Fixer'
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: php-cs-fixer:3.52, cs2pr

- uses: actions/cache@v4
with:
path: '.php-cs-fixer.cache'
key: ${{ github.repository }}-8.2-phpcsfixer-${{ github.ref_name }}
restore-keys: |
${{ github.repository }}-8.2-phpcsfixer-master
${{ github.repository }}-8.2-phpcsfixer-
- name: Run PHP-CS-Fixer
# Using cs2pr settings, see: https://github.com/shivammathur/setup-php#tools-with-checkstyle-support
run: 'php-cs-fixer fix --dry-run --format=checkstyle | cs2pr'
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.cache/

/test/functional/fixtures/cache
/test/functional/fixtures/log
/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/*/doctrine/base/
Expand Down
10 changes: 5 additions & 5 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "lib/vendor/swiftmailer"]
path = lib/vendor/swiftmailer
url = https://github.com/swiftmailer/swiftmailer.git
branch = 5.x
path = lib/vendor/swiftmailer
url = https://github.com/FriendsOfSymfony1/swiftmailer.git
branch = 5.x
[submodule "lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine"]
path = lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine
url = https://github.com/FriendsOfSymfony1/doctrine1.git
path = lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine
url = https://github.com/JamesAndJamesFulfilment/doctrine1.git
38 changes: 38 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

$finder = PhpCsFixer\Finder::create()
->ignoreVCSIgnored(true)
->in(__DIR__.'/lib')
->in(__DIR__.'/data/bin')
->in(__DIR__.'/test')
->append([__FILE__])
// Exclude PHP classes templates/generators, which are not valid PHP files
->exclude('task/generator/skeleton/')
->exclude('plugins/sfDoctrinePlugin/data/generator/')
->exclude('plugins/sfDoctrinePlugin/test/functional/fixtures/')

// Exclude sub-modules folders
->exclude('plugins/sfDoctrinePlugin/lib/vendor/doctrine')

// Exclude generated files (whole directories)
->exclude('functional/fixtures/cache')
->exclude('functional/fixtures/log')

// Exclude generated files (single files)
->notPath('unit/config/fixtures/sfDefineEnvironmentConfigHandler/prefix_result.php')
->notPath('unit/config/fixtures/sfFilterConfigHandler/result.php')
;

$config = new PhpCsFixer\Config();
$config
->setRules([
'@PhpCsFixer' => true,
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
'nullable_type_declaration_for_default_null_value' => true,
])
->setCacheFile('.cache/php-cs-fixer.cache')
->setFinder($finder)
;

return $config;
56 changes: 0 additions & 56 deletions .travis.yml

This file was deleted.

65 changes: 65 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,71 @@
CHANGELOG
=========

=======

xx/xx/xxxx: Version 1.5.xx
--------------------------

* Remove sfXCacheCache as the extension is not available on PHP v7.4 anymore.
* Remove sfEAcceleratorCache as the extension is not available on PHP v7.4 anymore.
* Remove sfAPCCache as it uses the `apc` extension, which is not available on PHP v7.4 anymore.
**[BC-Break]** Use `sfAPCuCache` class instead, available from Symfony1 v1.5.16

28/02/2024: Version 1.5.18
--------------------------

* Set min versions of swiftmailer to 5.4.13 and 6.2.5 and updated swiftmailer submodule by @thirsch in #331

23/02/2024: Version 1.5.17
--------------------------

* Update min PHP requirement to v7.4 or v8.1 by @thePanz in #325
* Updated gh workflow to use latest actions by @thirsch in #330
* Backported display_errors-handling to sf1 by @thirsch in #328

15/02/2024: Version 1.5.16
--------------------------

* Fix(deprecations) Fix deprecations in sfMessageSource_Aggregate, by @thePanz in #277
* Add(linting) Add code linting to GitHub workflow, use php-cs-fixer by @thePanz in #283
* Add(gitattributes) Add .gitattributes to repository by @thePanz in #287
* fix: avoid creating dynamic property $options by @vimar in #290
* Update(github) Update github workflows by @thePanz in #292
* php8.3 in the party by @connorhu in #294
* Fix(php-cs-fixer) Fix php-cs-fixer to v3.45 and apply code fixes by @thePanz in #300
* 8.3 compat/string to array by @iricketson in #298
* Fix APC tests and add APCu support by @mentalstring in #267
* [8.x Compatiblity] sfDebug::shortenFilePath by @iricketson in #299
* Fix strpos() deprecation on sfCacheSessionStorage check for cookie by @thePanz in #303
* Fix setrawcookie() deprecation on null parameter by @thePanz in #304
* Fix str_replace() deprecated null parameter on sfNumberFormat by @thePanz in #305
* [PHP] Replace default $flags variable with 0 by @iricketson in #307
* [PHP8] Declare sfDoctrineFormGenerator $params property by @iricketson in #306
* Update README by @mentalstring in #310
* minor fix: remove fourth argument by @connorhu in #308
* Fix PHP8.1 sfForm - Unsupported operand types: array + null on sfForm by @Tybaze in #281
* Fix link to GitHub pipeline badge by @thePanz in #311
* fix(phpdoc) remove html code from throws phpdoc. phpstan don't like this by @connorhu in #309
* fix(phpdoc) remove version tag by @connorhu in #313

12/01/2023: Version 1.5.15
--------------------------

* Add support for PHP 8.2 by @thirsch in #274
* More adjustments for PHP 8.0 & 8.1 by @thirsch in #272

25/11/2022: Version 1.5.14
--------------------------

* Update composer.json to automatically remove lexpress/symfony1 package by @spirit-q2 in #241
* Updated lexpress to fos1 in the submodules. by @thirsch in #238
* Compat for Swiftmailer 6 but preserve compatibility with Swiftmailer 5. by @thirsch in #240
* Update PHPDoc for `sfWebController::redirect()` func by @cmdeviant in #246
* Fixing Issue #234 by @pathumhdes in #235
* Add consistent local environment for testing with docker and docker-compose by @alquerci in #262
* Use GitHub actions for Continuous Integration tests by @thePanz in #268
* Add support for PHP 8.0 & 8.1 by @Tybaze in #266

08/06/2020: Version 1.5.13
--------------------------

Expand Down
Loading

0 comments on commit 1140aa1

Please sign in to comment.