Download the PHP package ice6/laravel-schema without Composer

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

Laravel Schema

This package will help to display database schema information from terminal.


Installation

Via Composer

Install manually (add the line to composer.json file)

Then open your terminal and hit the command

Add the following line to config/app.php file's providers array

For lumen open bootstrap/app.php and add the line below


Available commands / Features

  1. php artisan schema:help Display the available commands and usages.
  2. php artisan schema:simple Display overall tables with total rows count.
  3. php artisan schema:list Display all the available tables. schema information in list (please see details below).
  4. php artisan schema:show Display all the available tables schema information in tabular form (please see details below).
  5. php artisan schema:table --t=yourTableName or --t=Namespace\\Model Display a table's paginated data (please see details below).
  6. php artisan schema:query --r="wirte your raw sql query in double quote" Perform a sql query.
  7. php artisan schema:monitor Display database server status.

Usage in details

Show Schema information in tabular form

Example output: Schema information in tabular form

Schema information in tabular form

If you want to see a specific table then pass table name or Namespace\\Model

database info commandline

Note: Same condition will be applied for tables list view

Show Schema information in List

Example output: Schema information in list

database info commandline

Avaliable Options in show and list:

Show Table names and total rows

Example output: Tables name with rows count

Tables name with rows count

Note: You may pass --c=connectionName or -c connectionName to display a specific connection schema info

Show table definition

Example output: Table definition with default page and limit

Table definition with default page and limit

Avaliable Options in table:

Perform raw sql query

Example output: Query result will be dumped in console

Query result will be dumped in console

Avaliable Options in query:

Monitor database server

Example output: Showing the database status

Schema information in tabular form

You can pass --i=integerNumber as refresh time interval and --c=ConnectionName as well


License

The laravel-schema is a open-source software licensed under the MIT License.

Thank you :)


All versions of laravel-schema 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 ice6/laravel-schema contains the following files

Loading the files please wait ....