The problem is that doing composer require for this module... does not actually add anything to the /vendor directory.
Which leads to the following error:
In addition to nothing getting created in the vendor/ directory, running composer require thisisbd/silverstripe-maintenance-mode:dev-master produces errors referencing dljoseph... this leads me to believe there is misconfiguration in the composer.json or something wrong with the packagist listing for this item.
This is a really important / useful tool... crazy that it's not built into silverstripe. 🤞 we can get it working, the idea / concept of it is perfect
Composer installs are broken. first, the documentation is wrong and references a composer install command that does not work
composer require "dljoseph/silverstripe-maintenance-mode:*"
This command does work:
composer require thisisbd/silverstripe-maintenance-mode:dev-master
The problem is that doing
composer require
for this module... does not actually add anything to the/vendor
directory.Which leads to the following error:
In addition to nothing getting created in the
vendor/
directory, runningcomposer require thisisbd/silverstripe-maintenance-mode:dev-master
produces errors referencingdljoseph
... this leads me to believe there is misconfiguration in the composer.json or something wrong with the packagist listing for this item.This is a really important / useful tool... crazy that it's not built into silverstripe. 🤞 we can get it working, the idea / concept of it is perfect