Elektrine
EN
Log in Register
Paige Chat Timeline Communities Gallery Videos Email DNS VPN Uptime Kairo
Back to Timeline
Remote

Tobias van Beek

@tvbeek@phpc.social
mastodon 4.6.6
  • Open on phpc.social

Dutch web developer, working with PHP.
Love to spend some time on opensource projects and helping other people.

0 Followers
0 Following
31 Posts
Joined April 26, 2022
About me:
https://tjvb.nl/about
GitHub:
https://github.com/tvbeek

Posts

Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Aug 04, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @happyborg@fosstodon.org
@happyborg@fosstodon.org I have it on the network tab for a system and there I can set it on static with an address. Currently I can't change it because it is running 😊 One thing I just realized is that I currently have only LXC and not a full VM running but I thought it was also possible with a VM.
0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Aug 04, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @happyborg@fosstodon.org
@happyborg@fosstodon.org You can also set the IP in proxmox. That doesn't solve your problem with netplan (I can't help you with that) But it can solve your static ip question.
0
1
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Aug 03, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @grmpyprogrammer@yac.grumpy-learning.com
@grmpyprogrammer@yac.grumpy-learning.com I'm both mad about it and see it as the only positive result from the whole push to use LLM's
0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Jun 08, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

RE: @FullStackEindhoven@phpc.social

It took a little bit longer then expected but I'm happy that we changed the name and now have a website 😃

https://fullstackeindhoven.nl/

1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 28, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Question to get an idea and inspiration: what do you run in CI?

I run:
- composer install + validate + audit
- php lint
- deptrac
- ecs
- @phpmd@phpc.social
- @phpunit@phpc.social (with and without database)
- @infection_php@mastodon.social
- @phpstan@phpc.social
- Vi test
- rector
- mlc
- vale
- redoc-cli
- Custom script to build documentation from a combination of markdown, openapi and test results.
- a manual job to create a new release (combine all changelogs from a directory to a main changelog, create a tag, push)

#PHP #CI #quality

3
2
4
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 25, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @waterkip@defcon.social
@waterkip@defcon.social je hebt de packages van Ondrej https://deb.sury.org/ om andere PHP versies te installeren. (Dat is de meest standaard versie) Zie bijvoorbeeld https://php.watch/articles/php-8.3-install-upgrade-on-debian-ubuntu voor een uitleg. Het zou ook met docker kunnen maar dat het kans op andere uitdagingen.
0
2
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 24, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @waterkip@defcon.social
@waterkip@defcon.social to be honest if I need to support PHP 8.3 as a minimum I should use that for my local environment. Laravel 13 support PHP 8.3 so that shouldn't be a problem. But I shouldn't be surprised if some dependencies did bump the minimum PHP version ☹️ (and yes, I think that should mean a new make version but some people think differently)
0
4
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 24, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @waterkip@defcon.social
@waterkip@defcon.social you can. The versions are boundaries. If you add a new package without a version, composer tries to find the latest version that fits in the boundaries on your current environment. That can result in a set that doesn't work on all edges of your version constraints. That is also the reason why you can have multiple versions supported for a package. As example: https://gitlab.com/tjvb/laravel-githash/-/blob/master/composer.json?ref_type=heads#L39 You can add a version to composer require to get an older version composer require vendor/pkg:10.3
0
2
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 24, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @waterkip@defcon.social
@waterkip@defcon.social composer is only the package manager and not a PHP installer. It can prevent installing your project on a system with a not working PHP version. (Or with missing extensions) It is possible to support multiple versions with a PHP requirement like: "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0" Example: https://gitlab.com/tjvb/githash/-/blob/master/composer.json?ref_type=heads#L37 And yes, PHP doesn't use semver (never has) I understand your frustrations but I think you didn't know the PHP eco system 🙂
0
2
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 23, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @alessandrolai@phpc.social
@alessandrolai I will let you know when I found something @phpunit @phpstan @phpmd
2
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 22, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Does anyone know a package to read junit and/or Open Test Reporting in #PHP ?

I'm thinking about reading logs and reports from code quality tools to keep a history (and see trends)

First set of tools that I have in mind includes @phpunit@phpc.social @phpstan@phpc.social @phpmd@phpc.social

#JUnit #OTR #PHP

phpc.social

PHP Community on Mastodon

2
1
5
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Apr 11, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

@RWSverkeersinfo@social.overheid.nl complimenten van mijn dochter voor de weginspecteur die ongeveer een uur geleden het verkeer even liet stoppen op de verbinding van de A50 naar de A28.

Ze vroeg eerst waarom we moesten stoppen. Toen ik vertelde dat het was om de eendjes (die ik net kon zien) naar de kant te laten gaan zei ze dat het heel goed was dat we moesten stoppen 👍

1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 31, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @erikaheidi@fosstodon.org
@erikaheidi@fosstodon.org maybe I miss something, but I didn't see any video 🤔
1
1
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 30, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 0.9.0 for GitLab Models for Laravel.

It added support for Laravel 13 (Thanks to @Sjors1985@phpc.social ) and PHP 8.5.

This package is to store the webhook events from GitLab in you Laravel project.

See: https://gitlab.com/tjvb/gitlab-models-for-laravel

#Laravel #Laravel13 #PHP #PHP85 #GitLab

2
0
1
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 26, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 4.8.0 for Laravel Mail Catchall

This version adds support for Laravel 13

This package helps you to forward all the mail from your Laravel application to a specified address and have the information about the original receivers added.

https://gitlab.com/tjvb/laravel-mail-catchall

#PHP #release #Laravel #Laravel13 #package

0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 20, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 2.6.0 for GitLab webhooks receiver for Laravel.

This adds support for PHP 8.5 and Laravel 13

https://gitlab.com/tjvb/gitlab-webhooks-receiver-for-laravel/-/releases/v2.6.0

This package let you store the webhook data that you receive from GitLab in your Laravel application.

#Release #GitLab #webhooks #PHP #PHP85 #Laravel #Laravel13

0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 13, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Back home after another successful @dutchphpconference@mastodon.social
Thanks for the organization, the speakers and sponsors for making it possible!

Now it is time to process everything and wait until next year.
#dpc #dpc26 #dpc27

5
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 13, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Thankful that @sebastian@phpc.social did not only give a great presentation but also mentioned https://phpc.social and @phpc_tv@phpc.social

It is good to share the safe place with the community!

#dpc #dpc26 #phpc

16
0
9
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 12, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Using different git configurations without manual steps. Like for work and private.

#Git #configuration

https://tjvb.nl/posts/multiple-git-configurations?rel=mastodon

2
1
2
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Mar 12, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Finished the short preparing meeting with the team (to know who is going to which presentation)

I'm ready and enthusiastic for @dutchphpconference@mastodon.social #DPC #DPC26

0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Feb 20, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @sarah@phpc.social
@sarah congratulations and good luck.
0
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Feb 16, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @pollita@phpc.social
@pollita my first impression is that you collected more wisdom and strength to not give a fuck about what's not important. And besides that, aging shows that you survived another year 👍
0
1
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Jan 31, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to on social.wildeboer.net
@jwildeboer@social.wildeboer.net you can collect the same points with the tea from Pickwick. See (in Dutch): https://www.pickwick.nl/spaarprogramma/ That is very useful in a mixed drinking household 😉
1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Jan 15, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @sysedit@mastodon.social
@sysedit I think @jrf_nl can use some help for the packages she maintain.
1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Jan 06, 2026
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @viktor@fosstodon.org
@viktor @chrastecky It is very nice to see the remote approach. But to be honest a position without any indication about the salary (or examples for different locations) makes it less interesting to apply. And yes I understand that it can be difficult to give realistic information.
1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Oct 24, 2025
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 0.8.0 for GitLab Models for Laravel.

It added support for Laravel 12 and fixed a problem for a deployment without an url.

This package is to store the webhook events from GitLab in you Laravel project.

See: https://gitlab.com/tjvb/gitlab-models-for-laravel

#Laravel #Laravel12 #PHP #GitLab

1
0
1
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · May 01, 2025
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 4.6.0 for Laravel Mail Catchall

This version adds support for #Laravel 12

This package helps you to forward all the mail from your Laravel application to a specified address and have the information about the original receivers added.

https://gitlab.com/tjvb/laravel-mail-catchall

#PHP #release #Laravel12 #package

phpc.social

PHP Community on Mastodon

0
0
1
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Nov 21, 2024
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 0.6.0 for GitLab Models for Laravel.

This adds PHP 8.4 support.

You can use this package if you want to use eloquent models and store webhooks data from GitLab in different tables.

https://gitlab.com/tjvb/gitlab-models-for-laravel

#PHP #PHP84 #release #Laravel #GitLab

0
0
1
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Nov 21, 2024
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

I released version 2.4.0 for GitLab webhooks receiver for Laravel.

This adds support for PHP 8.4

https://gitlab.com/tjvb/gitlab-webhooks-receiver-for-laravel

This package let you store the webhook data that you receive from #GitLab in your #Laravel application.

#PHP #PHP84 #GitLab #Laravel

1
0
1
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Nov 13, 2024
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social
Replying to @GeeH@phpc.social
@GeeH@phpc.social a short break then a fresh look.
1
0
0
0
Open post
tvbeek
Tobias van Beek @tvbeek@phpc.social · Oct 14, 2024
Tobias van Beek
@tvbeek@phpc.social

Dutch web developer, working with PHP. Love to spend some time on opensource projects and helping other people.

phpc.social

Thinking about a way to get new #elePHPants to create new pictures for https://placephant.com/

And a new picture for my #PSR8 postcard (see: https://tjvb.nl/post/psr-8-the-most-forgotten-psr-that-isnt-about-code-but-more-important-then-all-other-psrs#postcards )

Does anyone know a good way that is also nice for my wallet? :elephpant:

1
1
1
0

Remote instance

phpc.social
Open on original server

Media

313k7r1n3
Elektrine

Tor hidden service

elekhj7afj4qnrr4yd3bkzslsyo5jgfxw3orgjkhlcxifueodybyiiad.onion

Platform

  • Email
  • Chat
  • Timeline
  • Communities
  • VPN
  • DNS

Company

  • About
  • Contact
  • FAQ

Legal

  • Terms of Service
  • Privacy Policy
  • Warrant Canary
  • Lite (no JS)
  • VPN Policy
  • Source code

Support

  • support@elektrine.com
  • Report Security Issue
Mail client setup IMAP mail.elektrine.com:993 POP3 mail.elektrine.com:995 SMTP mail.elektrine.com:465
© 2026 Elektrine. All rights reserved. Server: 22:43:01 UTC