Download the PHP package numbers/skeleton without Composer

On this page you can find all versions of the php package numbers/skeleton. 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 skeleton

Skeleton Application for Numbers Framework

Installation Instructions

1) Create a new project:

composer create-project --no-install numbers/skeleton [project directory]

Note: Composer must be installed on your system.
Note: We skip vendor directory here by using --no-install option;

2) Build application:

Navigate to [project directory] and run following command:

    make build

Note: By default application will be complied to run in production mode. You can use "make deployment_development" to compile it in development mode.

3) Setup host:

3.1) For single host applications add an entry to /etc/hosts like:

    127.0.0.1   [your domain]

3.2) For multi host application you need to install "dnsmasq" and add an entry to dnsmasq.conf file as follows:

    address=/.[your domain]/127.0.0.1

    Note: For development you can add entry to process all domains that ends with .local:

        address=/.local/127.0.0.1

4) Setup Apache:

4.1) Take [project directory]/conf/dev/vhosts.000.general.conf as a template and put it to apache configuration folder;

4.2) Take [project directory]/conf/dev/vhosts.100.your_domain.conf as a template and replace [your domain] with your domain, adjust directories as per your system and put it to your apache configuration folder;

4.3) Restart Apache

5) Create database and promote schema changes:

Framework provides two options to promote schema changes to database:

5.1) Direct schema changes, available commands:
    make schema_test
    make schema_commit
    make schema_drop

5.2) Migrations, available commands:
    make migration_code_test
    make migration_code_commit
    make migration_code_drop
    make migration_db_test
    make migration_db_commit
    make migration_db_rollback

Note: If you want to have migrations as mandatory promotion method you can set following setting in environment.ini file:

        application.structure.db_migration = 1

    In this case you cannot run schema commands and vise versa.

Note: you need to navigate to [project directory] to run make commands.

6) Run your application in a browser and enjoy.


All versions of skeleton with dependencies

PHP Build Version
Package Version
No informations.
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 numbers/skeleton contains the following files

Loading the files please wait ....