This is a private Composer repository.
To use it, you have to add this repository to your composer.json file.
Add this Composer
repository to your project's composer.json
file, then you can require these private packages just like you would with
one from Packagist.
{
"repositories": [{
"type": "composer",
"url": "https://satis.algowrite.com"
}]
}
Click on an individual package's release version to get a snippet of code for your project's dependencies.
Read more on how to handle composer private packages.
Require the module installer and explicitly allow the plugin to run in your project's composer.json file:
{
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"mweb/laravel-module-installer": "^2.0"
},
"config": {
"allow-plugins": {
"mweb/laravel-module-installer": true
}
}
}
Run the composer require command using the package name from this registry:
composer require asgard/example-module:^0.0.1
Note: Replace algowrite/your-module-name with the actual package name listed below.
Update to the latest compatible version or target a specific version release constraint:
composer update asgard/example-module
composer require asgard/example-module:^0.2.0
Common interface for logging libraries
This Composer repository is powered by Satis