stof
Repos
635
Followers
2015
Following
39

The Symfony PHP framework

28142
8786

Composer script handling your ignored parameter file

922
96

Apply an asset version based on a hash of the asset for symfony/asset

24
4

Provides user management for your Symfony project. Compatible with Doctrine ORM & ODM, and custom storages.

3264
1606

Events

issue comment
Migrating from SASS @import

After installing and running the migration tool, it tells me I should use @use instead, when I think to do what I want means @forward instead.

Actually, if all you want is to produce a CSS file, @use will work totally fine. Using @forward is useful only if you want to expose the mixins, functions and variables to other Sass imports of your app.scss file.

Created at 14 hours ago
issue comment
Migrating from SASS @import

you need to use the sass package to compile your Sass files, not node-sass. node-sass has not implemented support for Sass modules yet. Note that node-sass is deprecated and won't receive support for them: https://github.com/sass/node-sass/#node-sass

Created at 14 hours ago
issue comment
How to add '; ' after each style

The ; is optional after the last style rule in CSS. So this is a bug of the tool not supporting the absence of the ;, which is where you should report it.

Created at 14 hours ago

Added the latest TYPO3 extension security announcements

  • CVE-2023-26091 - frappant/frp-form-answers
  • CVE-2023-28604 - sitegeist/fluid-components

Merge pull request #680 from derhansen/master

Added the latest TYPO3 extension security announcements

Created at 15 hours ago
pull request closed
Added the latest TYPO3 extension security announcements
  • CVE-2023-26091 - frappant/frp-form-answers
  • CVE-2023-28604 - sitegeist/fluid-components
Created at 15 hours ago
issue comment
is there a way to create a string without quotes?

There is no string filter in Twig itself. It might come from an extension though.

Created at 15 hours ago
issue comment
Allow fetching packagist.org/packages.json without provider-includes

Adding a query string to change the content would be hard because this is a static file served directly by nginx.

Created at 16 hours ago
issue comment
Incorrect "mixed" type hint in TypedCacheItem

Actually, the code is not broken, because TypedCacheItem is used only on PHP 8: https://github.com/doctrine/cache/blob/5d55089cbe7339f72405560a254153e21c24e9c5/lib/Doctrine/Common/Cache/Psr6/CacheAdapter.php#L80-L92

Created at 5 days ago
issue comment
Incorrect "mixed" type hint in TypedCacheItem

Using mixed as return type is indeed wrong, as this native type requires PHP 8+ while this library supports 7.1+

Created at 5 days ago
issue comment
Multi IsGranted

the IsGranted attribute can be used multiple times

Created at 5 days ago
issue comment
Improve the type descriptor for SimpleArrayType

@ondrejmirtes any chance to merge this ? Even though it does not solve all issues related to this SimpleArrayType (due to #436), it improves the situation.

Created at 5 days ago
issue comment
Use twig_ord instead of mb_ord (1.x)

Twig 1.x is EOL Twig 2+ relies on symfony/polyfill-mbstring so it is not affected.

Created at 6 days ago