Download the PHP package astrogoat/promobar without Composer

On this page you can find all versions of the php package astrogoat/promobar. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package promobar

A Promobar app for Stratum

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Installation

You can install the package via composer:

Usage

Include the Blade component where you would like it to appear when ever the promobar bar has been enabled via the app settings.

Since it's a Blade component you can also add any attributes you might need.

Extending

You can extend the promobar to use your own settings and render if you have special needs.

Three files are needed in order to extend it.

Let's start with the type class. Create a new class and extend Astrogoat\Promobar\Types\PromobarType.

The class only require two methods. renderSettings and renderComponent which needs to be the string path to your two Blade files.

Let's create those two Blade files.

resources/views/promobar/settings.blade.php

Here is where you can define what you settings will look like when you go to Apps -> Promobar and select your promobar type. Though we haven't hooked it up, so nothing will show up just yet.

Important: When you add any type of inputs that you want to be persisted you need to add the name and wire:model attributes. Name has to be a html array starting with payload[]. What you put inside the brackes it what ever name you want it to be called. Same goes for the wire:model, it has to start with payload., again what ever you put after the . (dot) is up to your, but should be the same as your name attribute.

Now in your component Blade view (what's going to be the user-facing component) you can make use of the inputs that you defined in the settings Blade file.

resources/views/promobar/component.blade.php

Final step is to hook it up.
In your service provider in the register method you can hook into the promobar. The $promobar->addType() method require two arguments. First is the key, in this case we call it popup and second argument is the type class that we created earlier.

Real world example

You can see a real world example on how the Zaius app hooks into the promobar.

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

This promobar package is forked from the awesome Spatie promobar package. Please go support them if you can.

License

The MIT License (MIT). Please see License File for more information.


All versions of promobar with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
astrogoat/strata Version ^0.7.0|^0.8.0
spatie/laravel-package-tools Version ^1.4.3
illuminate/support Version ^8.37 || ^9.0 || ^10.0|^11.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package astrogoat/promobar contains the following files

Loading the files please wait ....