πŸ’ΎInstallation

Gitamic is installed via Composer.

Before you install Gitamic, make sure your system and application meets the Requirements.

Composer

To install Gitamic, you must use Composer.

Gitamic is not available on the public Composer package repository Packagist, so to install Gitamic, we must first tell Composer how to find it.

To do that, you must add the private repository URL to the repositories array in your composer.json:

"repositories": [
  {
    "type": "composer",
    "url": "https://gitamic.composer.sh"
  }
],

Then, you can install the package via Composer as you'd expect:

composer require simonhamp/gitamic

The first time you run this, you'll be prompted to authenticate against the private package repository:

Loading composer repositories with package information
Authentication required (gitamic.composer.sh):
  Username: 
  Password: 

The authentication details will depend on where you purchased your license:

  • Username: Your Anystack account email address.

  • Password: Your license key followed by a colon : and the domain name you entered when activating your license. For example: 9227fd74-ed29-4d1a-ad75-0bc41bea16a9:abc-widgets.com

Last updated

Was this helpful?