aseqbase/skeleton

All the main and applicable aseqbase files and folders

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/aseqbase/skeleton

v7.0.0 2025-12-05 13:35 UTC

This package is auto-updated.

Last update: 2025-12-30 13:58:52 UTC


README

aseqbase/skeleton

All the main and applicable aseqbase files and folders, to have a complete but blank aseqbase project...

Dependencies

Managements

Installing

  1. Install all dependencies mentioned before
  2. Follow one of these options:
    • Open a terminal in the destination directory (for example, D:\MyWebsite\skeleton\) of the website, then install the project by:
       > composer create-project aseqbase/skeleton
    • Prompts below to create a manageable project (update, uninstall, etc.):
       > composer require aseqbase/skeleton
       > cd vendor/aseqbase/skeleton
       vendor/aseqbase/skeleton> composer dev:install
  3. Put the destination directory of your project on the appeared step (for example, D:\MyWebsite\skeleton\)
      Destination Directory [D:\MyWebsite\]: D:\MyWebsite\skeleton\
  4. Follow the steps to finish the installation of sources, database, etc.
  5. [optional] On the local server, create an optional file named global.php in the skeleton directory to change your-parent-directory-name (from the .aseq) using:
      > composer skeleton:create global --aseq "skeleton" --base "your-parent-directory-name" -f
    or
      > cd vendor/aseqbase/skeleton
      vendor/aseqbase/skeleton> composer dev:create global --aseq "skeleton" --base "your-parent-directory-name" -f
    Note: Do not forget to replace "your-parent-directory-name" with your item (default .aseq).
  6. Enjoy...

Using

  1. Do one of the following options:
    • Visit its special URL (for example, http://skeleton.[my-domain-name].com, or http://[my-domain-name].com/skeleton)
    • On the local server:
      1. Use the following command on the root directory
        > composer start
      2. Visit the URL localhost:8000 (for default) on the local browser
  2. Enjoy...

Updating

  1. Keep your project updated using
      > composer skeleton:update
    or
      > cd vendor/aseqbase/skeleton
      vendor/aseqbase/skeleton> composer dev:update
  2. Follow the steps to finish the update of sources, database, etc.
  3. Enjoy...

Uninstalling

  1. Uninstall the project and the constructed database using:
      > composer skeleton:unistall
    or
      > cd vendor/aseqbase/skeleton
      vendor/aseqbase/skeleton> composer dev:unistall
  2. Follow the steps to finish the uninstallation of sources, database, etc.
  3. Enjoy...

Creating

  1. Create a new file by a predefined template name (for example, global, config, back, router, front, user, info, etc.) using:
      > composer skeleton:create [predefined-template-name]
    or
      > cd vendor/aseqbase/skeleton
      vendor/aseqbase/skeleton> composer dev:create [predefined-template-name]
  2. Follow the steps to finish creating the file.
  3. Enjoy...