PHPackages                             noud/schema - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. noud/schema

ActiveLibrary[Database &amp; ORM](/categories/database)

noud/schema
===========

Read database schema, table and column metadata in Laravel or plain PHP.

0.1.1(9y ago)0552MITPHP

Since Apr 17Pushed 6y agoCompare

[ Source](https://github.com/noud/schema)[ Packagist](https://packagist.org/packages/noud/schema)[ RSS](/packages/noud-schema/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (1)Versions (5)Used By (2)

A database schema inspector...
==============================

[](#a-database-schema-inspector)

... a very lightweight one. Iterate through all your databases, tables and columns without having to lookup the correct query syntax for your specific database system.

```
composer require dfba/schema

```

Examples
--------

[](#examples)

If you're using Laravel this will be *extra* easy:

Add the following line to the `'providers'` section of your `app.php` config file:

```
Dfba\Schema\Laravel\SchemaServiceProvider::class,
```

From this point on you can inject `Dfba\Schema\Schema` into your application. For example:

```
