PHP

helhum, German
@helhum@chaos.social avatar

Exactly 10 years ago, I released the first version of TYPO3 Console. Happy Birthday 🥳

andreas,
@andreas@karlsruhe-social.de avatar

@helhum Vielen Dank für Dein Engagement und Deine Zeit.

cybersmog,
@cybersmog@phpc.social avatar

@helhum TYPO3 Console has become a vital part of so many TYPO3 installations out there. Thank you so much for your dedication over the years!

sarah,
@sarah@phpc.social avatar

Are you a PHP developer looking for a job? Make sure you check out my project, https://phpforhire.com which is in beta, and will allow you to post a profile of yourself that will be searchable online.

thgs,
@thgs@phpc.social avatar

For anyone interested and iff you want to know..

supported lexical closures and first class anonymous functions since 2009 with the release of 5.3.

https://3v4l.org/kCgaI#v5.3.0

Facts.. facts..

array,
@array@fosstodon.org avatar

My first was 8.0, still in school, and I confess that I began learning it with the prejudice of it being a junky, terrible language everybody was making fun of. Fast forward ~1 year later, after finishing my internship, where I used full stack mainly, and having discovered that not only it wasn't that bad, but really a pleasure to work with. Not perfect, but perfectly suitable for its use cases and, what's perfect anyway? So reading this has been a joy. :D https://developerjoy.co/blog/php-doesnt-suck-anymore

ntha,
@ntha@mastodon.social avatar

@array @hydrian @blu256 Do you assign data to Dto/Model classes (for better editor integration) or just keep it as a HashMap of some kind? In PHP I've been lazy and just keep everything as an array, even though for type support casting to a Model class would be better.

array,
@array@fosstodon.org avatar

@ntha @hydrian @blu256 No, my models declare the attributes (mapped to the database ones), with constructors and getters/setters. That way I can pass the model objects through, for example, factories and interfaces (I use generics) up to the views. In this I was clearly "inspired" by the way say Laravel implements the MVC model. I'm just a noob so take this with a grain of salt, I'm probably doing more than one thing wrong or at least, not the best way possible. ;)

oliver,
@oliver@phpc.social avatar

If you were about to start a medium-sized project, what would you choose as an , and why? It should be something stable and well maintained. If the business takes off, then there should be no need to replace that layer.

Caveat: imagine that Doctrine and Eloquent haven't been invented yet.

oliver,
@oliver@phpc.social avatar

@zimzat yeah, on the surface level things seem to be attractive, but as you go further and deeper, facepalms emerge. Some dbal & a custom data mapper will probably be the start.

I use Doctrine on my day-to-day work, and have used Eloquent before. Eloquent I liked up to some point, but can't say that for Doctrine. I wish I had more time to build something like Eloquent but with less magic and bloat (simple to use but not trying to do everything imaginable)

thgs,
@thgs@phpc.social avatar

@oliver I mean.. the way you put it, the data mapper is only convenience probably. I think valinor supports stuff like nested levels that ocramius/GeneratedHydrator doesn't for example. Not sure 100% for either.

Personally, I would not consider writing my own data mapper, just for the sake of not losing time with the project.

Recently, I favour the notion of "first version is probably throw-away code" and just try to make it work. It all depends on what level you design things, I guess..

ramsey,
@ramsey@phpc.social avatar

How does one use PHPUnit 10 or 11 with Symfony 7? The PHPUnit Bridge includes instructions that will only work for PHPUnit 9.

https://symfony.com/doc/current/components/phpunit_bridge.html

cpereira,
@cpereira@framapiaf.org avatar
ramsey,
@ramsey@phpc.social avatar

@cpereira That says they’ll probably jump directly to PHPUnit 11 and skip 10, which is fine with me.

nyamsprod,
@nyamsprod@phpc.social avatar

Coming soon in the next minor release of League\Csv 😍
still ironing the feature that you can already test on the master branch. give it a try
https://csv.thephpleague.com/9.0/reader/statement/#where-clauses

nyamsprod,
@nyamsprod@phpc.social avatar

@derflocki there are a couple reasons why I do not use SQLite. First the package needs no dependencies, two, the feature was already present in the package like 7 years ago I only updated the UX around it and last but not least I seldom encounter CSV that adheres fully to the draft/informal RDC. Hence using the SQLite extension would not solve CSV parsing in real world IMHO.

derflocki,
@derflocki@phpc.social avatar

@nyamsprod Thanks for the explanation!

eliashaeussler, German
@eliashaeussler@phpc.social avatar

I just released new versions for EXT:warming, EXT:sitemap_locator and EXT:sitemap_robots 🥳

All new versions are compatibility releases for v13.1 – The Surfer's Starterkit.

Happy updating! 🚀

sarah,
@sarah@phpc.social avatar

What do you use for offsite backups for applications and databases?

willpower232,
@willpower232@phpc.social avatar

@mwop oh that's clever, I keep forgetting about fuse, are you using this one? https://github.com/s3fs-fuse/s3fs-fuse?tab=readme-ov-file

mwop,
@mwop@phpc.social avatar

@willpower232 Yes, within a container, via elementary/s3-volume (https://github.com/elementar/docker-s3-volume).

francesco, Italian
@francesco@orwell.fun avatar

Non riesco a configurare il server integrato di eclipse PHP su ubuntu based. Quando aggiungo un modulo e ne faccio il publish non viene copiato tutto il contenuto nella tmp del plugin, non permettendomi di testare gli script. Viene copiata solo la cartella di root del modulo, ma resta vuota. Non capisco dove sbaglio.

Crell,
@Crell@phpc.social avatar

Null is problematic, but why? Let's see why, and let that guide us to new alternatives.

https://peakd.com/hive-168588/@crell/much-ado-about-null

sirber,
@sirber@fosstodon.org avatar

I forgot how fun it is to develop with . It's sad that most of the jobs with it are WordPress related 😒

maxalmonte14,
@maxalmonte14@indiehackers.social avatar

@Crell @sirber I hold the same opinion about the JVM ecosystem but would love to work with Kotlin one day, it seems clean and modern.

Crell,
@Crell@phpc.social avatar

@maxalmonte14 @sirber It's honestly the most boring modern language. Java with less crappy syntax. There's some bits of it that are weird, but otherwise it's just kinda... Fine? Not exciting or interesting, just... Fine.

pieceofthepie,
@pieceofthepie@n8e.dev avatar

Oh this is fun. I can't upgrade to 11 as it needs PHP-Parser 5+.

Which I can't use as needs 4+.

Not to mention this project itself needs PHP-Parser so that upgrade in of itself means work on my part.

Is this where I start using a PHAR?

pieceofthepie,
@pieceofthepie@n8e.dev avatar

@heiglandreas "Those aren't dependencies of your application. Just tools..."

Fair, but also, if I remove development dependencies from the my projects if they're just tools then those projects no longer have development dependencies.

Which I guess leads me to "what are development dependencies for if not things needed for development?"

heiglandreas,
@heiglandreas@phpc.social avatar

@pieceofthepie Exactly. Only for development. Your code also earns money without them.

But by adding them to the dev-dependencies you are tying the code that earns money to the tools you only need for development.

By using separate composer.jsons (or PHARs) you can use the tools without tying your code to them and their dependencies.

typo3, German
@typo3@typo3.social avatar

From the small to the mighty, developers are all part of a bigger story. 🧡
We're expressing appreciation for all the developers who contributed to the project in the last month, and presenting April’s most important names and some numbers: https://typo3.com/blog/april-2024-developer-appreciation-day-dad

ampache,
@ampache@fosstodon.org avatar

6.4.0 out now!

This is a great release to move to. Numerous fixes and weird bugs squashed.

The 6 branches are winding up development but API6 will continue to be extended when development has moved to Ampache 7.

https://github.com/ampache/ampache/releases/tag/6.4.0

dogmazic,
@dogmazic@framapiaf.org avatar

@ampache
Updated !
It's faster for us ! :)
Thanks !

ampache,
@ampache@fosstodon.org avatar

@dogmazic that's great. We're starting to diverge between 6 and 7 now so really only api extension and bug fixes from now on

  • All
  • Subscribed
  • Moderated
  • Favorites
  • php
  • DreamBathrooms
  • magazineikmin
  • mdbf
  • thenastyranch
  • InstantRegret
  • rosin
  • Youngstown
  • slotface
  • hgfsjryuu7
  • ngwrru68w68
  • osvaldo12
  • kavyap
  • ethstaker
  • PowerRangers
  • anitta
  • Durango
  • khanakhh
  • everett
  • cubers
  • GTA5RPClips
  • modclub
  • cisconetworking
  • vwfavf
  • tacticalgear
  • normalnudes
  • Leos
  • tester
  • provamag3
  • All magazines