From 2230a4048bb76c5718ba74265bb4cba9c0f1511a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 5 Aug 2023 09:54:05 +0100 Subject: [PATCH] daily-email: add 2023-08-04 Laravel Prompts and framework-agnostic tools --- src/content/daily-email/2023-08-04.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/content/daily-email/2023-08-04.md diff --git a/src/content/daily-email/2023-08-04.md b/src/content/daily-email/2023-08-04.md new file mode 100644 index 000000000..3817e91e0 --- /dev/null +++ b/src/content/daily-email/2023-08-04.md @@ -0,0 +1,27 @@ +--- +title: > + Laravel Prompts and framework-agnostic tools +pubDate: 2023-08-04 +permalink: > + archive/2023/08/04/laravel-prompts +tags: + - php + - laravel + - open-source +--- + +Although I wouldn't consider myself a "Laravel Developer", I enjoy watching the talks from the Laravel conferences, most recently Laracon US, that took place last week. + +I like to learn from other communities and adopt relevant practices or tools within my projects. I did this with Laravel Collections, which I use on nearly every project. + +## Laravel Prompts + +I watched Jess Archer's talk on the new Laravel Prompts and was happy when she said it worked with plain PHP projects, not just Laravel. + +This means I can potentially use it with Drupal and Drush or Symfony Console applications, too, such as my build configuration file generator. + +## Here's the thing + +I like tools I can use across multiple technologies and prefer framework-agnostic tools to specific ones. + +Then, if I'm working on a different project, I can use the tools I already know instead of learning something different just for that.