Packagist alternatives and similar libraries
Based on the "Composer Repositories" category.
Alternatively, view Packagist alternatives based on common mentions on social networks and blogs.
-
CraftCMS
A flexible, user-friendly CMS for creating custom digital experiences on the web and beyond. -
Assert
A validation library with a rich set of assertions. Supports assertion chaining and lazy assertions. -
Enqueue
A message queue packages for PHP that supports RabbitMQ, AMQP, STOMP, Amazon SQS, Redis and Doctrine transports. -
Deptrac
A static code analysis tool that helps to enforce rules for dependencies between software layers. -
Brick\Money
A money library for PHP, with support for contexts, cash roundings, currency conversion. -
PHP Architecture Tester
Easy to use architecture testing tool for PHP. -
Laminas Stratigility
Middleware for PHP built on top of PSR-7.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Packagist or a related project?
README
Packagist
Package Repository Website for Composer, see the about page on packagist.org for more.
This project is not meant for re-use.
It is open source to make it easy to contribute. We provide no support if you want to run your own, and will do breaking changes without notice.
Check out Private Packagist if you want to host your own packages.
Development
These steps are provided for development purposes only.
Requirements
- PHP for the web app
- Symfony CLI to run the web server
- MySQL for the main data store
- Redis for some functionality (favorites, download statistics)
- git / svn / hg depending on which repositories you want to support
Installation
- Clone the repository
- Create 2 databases:
packagist
- for the web apppackagist_test
- for running the tests
- Install dependencies:
bash composer install
The composer install will prompt you for the database connection details on first install. - Setup the database:
bash app/console doctrine:schema:create
- Start the web server:
bash symfony serve
- Run a CRON job
app/console packagist:run-workers
to make sure packages update.
You should now be able to access the site, create a user, etc.