npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@fleetbase/verdaccio-composer-middleware

v0.0.6

Published

Middleware to handle composer dependency request.

Downloads

3

Readme

Fleetbase Verdaccio Composer Middleware Plugin

The Fleetbase Verdaccio Composer Middleware Plugin enables Verdaccio to serve as a repository manager for Composer packages, facilitating the publishing and management of PHP packages alongside npm packages. This integration supports the official Fleetbase registry (https://registry.fleetbase.io), which is a customized version of Verdaccio tailored to handle diverse protocols including npm and Composer, specifically designed to accommodate the needs of the Fleetbase ecosystem.

Features

  • Composer Support: Allows Verdaccio to act as a Composer repository, enabling it to manage PHP package dependencies.
  • Dual Protocol Functionality: Integrates seamlessly with Verdaccio's existing npm protocol support, providing a unified approach to package management across different technology stacks within the Fleetbase ecosystem.

Installation

To install the plugin, run the following command in your terminal:

npm install @fleetbase/verdaccio-composer-middleware

Configuration

After installation, add the following configuration to the config.yaml file of your Verdaccio server to enable the plugin:

middlewares:
  '@fleetbase/verdaccio-composer-middleware':
    enabled: true

Ensure the plugin is enabled as shown to activate Composer support within your Verdaccio registry.

Usage

Once enabled, the plugin allows your Verdaccio server to handle Composer packages. This involves both publishing packages using Composer and fetching packages as dependencies in PHP projects.

How to Publish a Composer Package

  1. Configure your Composer project to recognize your Verdaccio server as a repository.
  2. Use Composer's publish commands to push packages to the Verdaccio server configured with this middleware.

How to Use Composer Packages

  • In your PHP projects, specify the Verdaccio server as a repository source in your composer.json to allow composer install to fetch packages from your custom repository.
{
    "repositories": [
        {
            "type": "composer",
            "url": "https://registry.fleetbase.io"
        }
    ]
}

Contributing

Contributions to the Fleetbase Verdaccio Composer Middleware Plugin are highly appreciated. Whether it's feature requests, bug fixes, or improvements, please feel free to fork the repository and submit pull requests. Check out our CONTRIBUTING.md document for more information on contributing guidelines.

License

This plugin is licensed under the AGPL v3 License. Detailed terms and conditions can be found in the LICENSE.md file.

Support

For support, feature requests, or any questions about using the plugin, please open an issue on our GitHub repository at https://github.com/fleetbase/verdaccio-composer-middleware/issues.

Acknowledgments

  • Thanks to the Verdaccio community for providing a robust foundation for plugin development.