Releases: hostnet/symfony1
Releases · hostnet/symfony1
1.1.30
Silence PHP 8.1 deprecation warnings
Silence PHP 8.1 deprecation warnings
php 8 support
1.1.28 replaced deprecated create_function
PHP 7.4 compatibility
PHP 7.4 compatibility
Fixes 7.2 incompatibility
Fix counting on null in sfValidatorConfigHandler
More minor 7.1 incompatibilities
Fixed issue with forms and parsing the max_upload_size using PHP 7.1
Fixes minor 7.1 incompatibilities
Add php7.1, remove hhvm (#13) HHVM build errors about ``` The command "sudo apt-get install -y hhvm" failed and exited with 100 during . ``` https://travis-ci.org/hostnet/symfony1/jobs/231082063
PHP7 consistent ordering for splitHttpAcceptHeader
In PHP7 sorting order is changed, splitHttpAcceptHeader was
relying on unspecified behaviour of arsort(). Sorting order
is now made explicit.
phpVisibility in propel model generation
With this release we added a special feature to the propel generation where we can set the visibility of the generated methods for a column. This allows for a more easy migration to another model or interface.
You can use this feature as follows:
database:
table:
field:
type: INTEGER
phpVisibility: protected # visibility of generated methods
By default the visibility is public
, but when specified you can change this. This will influence the getter (i.e., getField
) and the setter (i.e., setField($v)
) for a field in your schema.
Depricated warning PHPmailer fixed
Merge pull request #9 from hostnet/hboomsma-patch-1 Update class.smtp.php