Enlightn Security Checker (from the folks behind Enlightn) is a command-line tool that checks if your application uses dependencies with known security vulnerabilities.You can install it globally via composer to start checking projects:1composer global require enlightn/security-checkerUsing the security-checker CLI, you provide...
16 May, 2022
07 May, 2022
Generate a Postman Collection from Laravel Routes
Programing Coderfunda
May 07, 2022
Laravel, Packages
No comments
Laravel API to Postman is a package by Andreas Elia that allows you to automatically generate a Postman collection based on your app’s API routes.After you install the package, you can run the following artisan command, which will automatically generate a postman collection by introspecting your app’s API routes:1php artisan export:postmanPostman is...
06 May, 2022
Firebase Cloud Messaging for Laravel
Programing Coderfunda
May 06, 2022
Laravel, Packages
No comments
Larafirebase is a package by Gentrit Abazi that provides sending push notifications and custom messages with Firebase in Laravel applications. This package uses Firebase Cloud Messaging—a cross-platform messaging solution to send messages at no cost—to send notifications to users on the client-side.Here is an example...