Frameworks

  • Total Network Visibility for Network Engineers and IT Managers Icon
    Total Network Visibility for Network Engineers and IT Managers

    Network monitoring and troubleshooting is hard. TotalView makes it easy.

    This means every device on your network, and every interface on every device is automatically analyzed for performance, errors, QoS, and configuration.
  • Cyber Risk Assessment and Management Platform Icon
    Cyber Risk Assessment and Management Platform

    ConnectWise Identify is a powerful cybersecurity risk assessment platform offering strategic cybersecurity assessments and recommendations.

    When it comes to cybersecurity, what your clients don’t know can really hurt them. And believe it or not, keep them safe starts with asking questions. With ConnectWise Identify Assessment, get access to risk assessment backed by the NIST Cybersecurity Framework to uncover risks across your client’s entire business, not just their networks. With a clearly defined, easy-to-read risk report in hand, you can start having meaningful security conversations that can get you on the path of keeping your clients protected from every angle. Choose from two assessment levels to cover every client’s need, from the Essentials to cover the basics to our Comprehensive Assessment to dive deeper to uncover additional risks. Our intuitive heat map shows you your client’s overall risk level and priority to address risks based on probability and financial impact. Each report includes remediation recommendations to help you create a revenue-generating action plan.
  • 1
    Laravel Dusk

    Laravel Dusk

    Laravel Dusk provides simple end-to-end testing and browser automation

    Laravel Dusk provides an expressive, easy-to-use browser automation and testing API. By default, Dusk does not require you to install JDK or Selenium on your machine. Instead, Dusk uses a standalone Chromedriver. However, you are free to utilize any other Selenium driver you wish.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 2
    Laravel Echo Server

    Laravel Echo Server

    Socket.io server for Laravel Echo

    NodeJs server for Laravel Echo broadcasting with Socket.io. The CLI tool will help you set up a laravel-echo-server.json file in the root directory of your project. This file will be loaded by the server during start-up. You may edit this file later on to manage the configuration of your server. The Laravel Echo Server exposes a light HTTP API to perform broadcasting functionality. For security purposes, access to these endpoints from http referrers must be authenticated with an APP id and key.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    Laravel Follow

    Laravel Follow

    Add user based follow system to your model

    This package helps you to add user user-based follow system to your model.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    Laravel Honeypot

    Laravel Honeypot

    Preventing spam submitted through forms

    When adding a form to a public site, there's a risk that spam bots will try to submit it with fake values. Luckily, the majority of these bots are pretty dumb. You can thwart most of them by adding an invisible field to your form that should never contain a value when submitted. Such a field is called a honeypot. These spam bots will just fill all fields, including the honeypot. When a submission comes in with a filled honeypot field, this package will discard that request. On top of that this package also checks how long it took to submit the form. This is done using a timestamp in another invisible field. If the form was submitted in a ridiculously short time, the anti-spam will also be triggered.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Cloudflare secures and ensures the reliability of your external-facing resources such as websites, APIs, and applications. Icon
    It protects your internal resources such as behind-the-firewall applications, teams, and devices.
  • 5
    Laravel Jetstream

    Laravel Jetstream

    Tailwind scaffolding for the Laravel framework.

    Laravel Jetstream is a beautifully designed application scaffolding for Laravel. Jetstream provides the perfect starting point for your next Laravel application and includes login, registration, email verification, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management. Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 6
    Laravel Microscope

    Laravel Microscope

    Fearless refactoring to find certain errors

    Why repeat the old errors, if there are so many new errors to commit? Give your eyes a rest, we will detect and fix them for you.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7
    Laravel Model States

    Laravel Model States

    State support for models

    This package adds state support to models. It combines concepts from the state pattern and state machines. It is recommended that you're familiar with both patterns if you're going to use this package. Imagine a model Payment, which has three possible states: Pending, Paid, and Failed. This package allows you to represent each state as a separate class, handles serialization of states to the database behind the scenes, and allows for easy and controller state transitions.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8
    Laravel Notify

    Laravel Notify

    Flexible Flash notifications for Laravel

    Laravel Notify is a package that lets you add custom notifications to your project. A diverse range of notification designs is available.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    Laravel OPcache

    Laravel OPcache

    Laravel Package for OPcache

    This package contains some useful Artisan commands to work with PHP OPcache. If you want to learn more about OPcache and what it can do for your Laravel application, read the article on Medium.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Automated RMM Tools | RMM Software Icon
    Automated RMM Tools | RMM Software

    Proactively monitor, manage, and support client networks with ConnectWise Automate

    Out-of-the-box scripts. Around-the-clock monitoring. Unmatched automation capabilities. Start doing more with less and exceed service delivery expectations.
  • 10
    Laravel Octane

    Laravel Octane

    Supercharge your Laravel application's performance

    Laravel Octane supercharges your application's performance by serving your application using high-powered application servers, including FrankenPHP, Open Swoole, Swoole, and RoadRunner. Octane boots your application once, keeps it in memory, and then feeds it requests at supersonic speeds.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 11
    Laravel Orion

    Laravel Orion

    The simplest way to create REST API with Laravel

    Laravel Orion allows you to build a fully featured REST API based on your Eloquent models and relationships with the simplicity of Laravel as you love it. Utilizes standard Laravel features such as Request classes, Policies, and API Resources. TypesScript SDK and OpenAPI specifications out of the box.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 12
    Laravel Packager

    Laravel Packager

    A cli tool for creating Laravel packages

    This package provides you with a simple tool to set up a new package and it will let you focus on the development of the package instead of the boilerplate. If you do run the package on Laravel 5.5+, package auto-discovery takes care of the magic of adding the service provider. Be aware that the auto-discovery also means that this package is loaded in your production environment.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 13
    Laravel Sanctum

    Laravel Sanctum

    Laravel Sanctum provides a featherweight authentication system

    Laravel Sanctum provides a featherweight authentication system for SPAs (single-page applications), mobile applications, and simple, token-based APIs. Sanctum allows each user of your application to generate multiple API tokens for their account. These tokens may be granted abilities/scopes that specify which actions the tokens are allowed to perform. Laravel Sanctum exists to solve two separate problems. Let's discuss each before digging deeper into the library. First, Sanctum is a simple package you may use to issue API tokens to your users without the complication of OAuth. This feature is inspired by GitHub and other applications that issue "personal access tokens". For example, imagine the "account settings" of your application has a screen where a user may generate an API token for their account. You may use Sanctum to generate and manage those tokens. These tokens typically have a very long expiration time (years), but may be manually revoked by the user anytime.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    Laravel Scout

    Laravel Scout

    Provides a driver based solution to searching your Eloquent models

    Laravel Scout provides a simple, driver-based solution for adding full-text search to your Eloquent models. Once Scout is installed and configured, it will automatically sync your model changes to your search indexes.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15
    Laravel Sentinel

    Laravel Sentinel

    A framework agnostic authentication & authorization system

    Sentinel is a PHP 8.1+ framework agnostic fully-featured authentication & authorization system. It also provides additional features such as user roles and additional security features.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 16
    Laravel Settings

    Laravel Settings

    Store strongly typed application settings

    This package allows you to store settings in a repository (database, Redis, ...) and use them through an application without hassle. If you want to use these settings somewhere in your application, you can inject them, since we register them in the Laravel Container.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 17
    Laravel Shopify App

    Laravel Shopify App

    A full-featured Laravel package for aiding in Shopify App development

    A full-featured Laravel package for aiding in Shopify App development, similar to Shopify_app for Rails. Works for Laravel 7 and up.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 18
    Laravel Shopping Cart

    Laravel Shopping Cart

    Shopping Cart Implementation for Laravel Framework

    A Shopping Cart Implementation for Laravel Framework. By default, the cart has a default sessionKey that holds the cart data. This also serves as a cart unique identifier which you can use to bind a cart to a specific user.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 19
    Laravel Sluggable

    Laravel Sluggable

    An opinionated package to create slugs for Eloquent models

    Generate slugs when saving Eloquent models. This package provides a trait that will generate a unique slug when saving any Eloquent model. The slugs are generated with the Laravels Str::slug method. Spatie is a web design agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20
    Laravel Splade

    Laravel Splade

    The magic of Inertia.js with the simplicity of Blade

    Splade provides a super easy way to build Single Page Applications (SPA) using standard Laravel Blade templates, enhanced with renderless Vue 3 components. In essence, you can write your app using the simplicity of Blade, and besides that magic SPA-feeling, you can sparkle it to make it interactive. All without ever leaving Blade. Splade gives you a massive head start when building applications. Navigate the documentation or watch the videos to discover its power. Splade allows you to use the Laravel Blade template engine and build a single-page application using regular server-side routing without building an API. You still have the full power of Vue.js when you need it.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21
    Laravel for Tailwind CSS

    Laravel for Tailwind CSS

    A Tailwind CSS frontend preset for the Laravel Framework

    A Laravel front-end scaffolding preset for Tailwind CSS - a Utility-First CSS Framework for Rapid UI Development.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 22
    Laravel wrapper for NativePHP

    Laravel wrapper for NativePHP

    Laravel wrapper for the NativePHP framework

    NativePHP is a new way to build native applications, using the tools you already know. NativePHP is not an especially opinionated way to build native apps. Right now, we only support a Laravel driver, but we're already working on making it work whatever framework you're using - and even if you're not using a framework at all. NativePHP is not a GUI framework. We don't want to tell you how to build your app. You can choose whatever UI toolset makes you and your team feel most productive. NativePHP is not some new custom fork of PHP. This is the good old PHP you know and love. We believe NativePHP is going to empower thousands of developers to build all kinds of applications. The only limit is your imagination. You could build a menubar app that lets you manage your cron jobs, or a cool new launcher app, or a screen recorder that puts cowboy hats on every smiley-face emoji it sees.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 23
    Laravel-Vue SPA

    Laravel-Vue SPA

    A Laravel-Vue SPA starter kit.

    A Laravel-Vue SPA starter kit.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 24
    Laravelium Sitemap package

    Laravelium Sitemap package

    Laravelium Sitemap generator for Laravel.

    Laravelium Sitemap generator for Laravel.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 25
    LinkAce

    LinkAce

    LinkAce is a self-hosted archive to collect links of your favorite web

    LinkAce is a self-hosted archive to collect links of your favorite websites. Save articles to read them later, tools to use in your next project, or historical content to archive it for the long term. LinkAce comes with a lot of features while keeping a clean and minimal interface. It provides a long-term archive to store links to websites, media files or anything else with a valid URL. The user is able to categorize the added links to be able to find them later, and share lists of links with friends, family, or coworkers. However, LinkAce should not provide a solution to sync your browser bookmarks.
    Downloads: 1 This Week
    Last Update:
    See Project