Download the PHP package fyre/forge without Composer

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

FyreForge

FyreForge is a free, open-source database forge library for PHP.

Table Of Contents

Installation

Using Composer

In PHP:

Forge Registry

Get Forge

Get the Connection.

Set Handler

Set a Connection class.

Forges

Add Column

Add a column to a table.

Additional column options may be available depending on the connection handler.

Add Index

Add an index to a table.

Additional index options may be available depending on the connection handler.

Build

Build a TableForge.

Additional table options may be available depending on the connection handler.

Create Table

Create a new table.

Additional table options may be available depending on the connection handler.

Drop Column

Drop a column from a table.

Drop Index

Drop an index from a table.

Drop Table

Drop a table.

Get Connection

Get the Connection.

Rename Column

Rename a column.

Rename Table

Rename a table.

MySQL

The MySQL Forge extends the Forge class and provides additional methods and options specific to MySQL databases.

Add Column

Add a column to a table.

Add Foreign Key

Add a foreign key to a table.

Add Index

Add an index to a table.

Alter Table

Alter a table.

Build

Build a TableForge.

Change Column

Change a table column.

Create Schema

Create a new schema.

Create Table

Create a new table.

Drop Foreign Key

Drop a foreign key from a table.

Drop Primary Key

Drop a primary key from a table.

Drop Schema

Drop a schema.

Postgres

The Postgres Forge extends the Forge class and provides additional methods and options specific to Postgres databases.

Add Column

Add a column to a table.

Add Foreign Key

Add a foreign key to a table.

Alter Column Auto Increment

Alter a column's auto increment.

Alter Column Default

Alter a column's default value.

Alter Column Nullable

Alter whether a column is nullable.

Alter Column Type

Alter a column's type.

Build

Build a TableForge.

Comment On Column

Set the comment for a column.

Comment On Table

Set the comment for a table.

Create Schema

Create a new schema.

Create Table

Create a new table.

Drop Constraint

Drop a constraint from a table.

Drop Foreign Key

Drop a foreign key from a table.

Drop Primary Key

Drop a primary key from a table.

Drop Schema

Drop a schema.

Sqlite

The Sqlite Forge extends the Forge class.

Table Forges

Add Column

Add a column to the table.

Additional column options may be available depending on the connection handler.

Add Foreign Key

Add a foreign key to the table.

Foreign keys cannot be added to an existing Sqlite table.

Add Index

Add an index to the table.

Additional index options may be available depending on the connection handler.

Primary keys cannot be added to an existing Sqlite table.

Change Column

Change a table column.

Additional column options may be available depending on the connection handler.

Column definitions can not be modified for an existing Sqlite table.

Clear

Clear the column and index data.

Column

Get the data for a table column.

Column Names

Get the names of all table columns.

Columns

Get the data for all table columns.

Drop

Drop the table.

Drop Column

Drop a column from the table.

Drop Foreign Key

Drop a foreign key from the table.

Foreign keys cannot be dropped from an existing Sqlite table.

Drop Index

Drop an index from the table.

Primary and unique keys cannot be dropped from an existing Sqlite table.

Execute

Generate and execute the SQL queries.

Foreign Key

Get the data for a table foreign key.

Foreign Keys

Get the data for all table foreign keys.

Get Forge

Get the Forge.

Get Table Name

Get the table name.

Has Column

Determine if the table has a column.

Has Foreign Key

Determine if the table has a foreign key.

Has Index

Determine if the table has an index.

Index

Get the data for a table index.

Indexes

Get the data for all table indexes.

Rename

Rename the table.

Set Primary Key

Set the primary key.

Primary keys cannot be added to an existing Sqlite table.

SQL

Generate the SQL queries.


All versions of forge with dependencies

PHP Build Version
Package Version
Requires fyre/schema Version ^4.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 fyre/forge contains the following files

Loading the files please wait ....