Home

Awesome

Scabbia Framework Version 1.5

Scabbia Framework is an open source PHP framework project under GPL license. It had been under development by Eser Ozvataf for 2 years and reached version 1.5 on stable branch. Its active development is frozen but small bugfixes will be available in time.

Installation

Step 1:

On Terminal or Command Prompt:

git clone https://github.com/eserozvataf/scabbia1-skeleton project

Alternatively Scabbia Skeleton package can be downloaded directly.

Step 2:

cd project
php scabbia update

Step 3:

Make application/writable and application/locale directories writable.

chmod 0777 -R application/writable
chmod 0777 -R application/locale

Step 4:

Open application/config/datasources.json file to update the database configuration parameters.

a sample mysql database configuration:

{
    "datasourceList": [
        {
            "id":           "dbconn",
            "interface":    "pdo",
            "persistent":   true,
            "overrideCase": "natural",
            "pdoString":    "mysql:host=localhost;dbname=project",
            "username":     "root",
            "password":     "123456",
            "initCommand":  "SET NAMES utf8",
            "errors":       "exception"
        }
    ]
}

Requirements

** Skeleton application auto-installs this requirement with other dependencies.

Dependencies

Bundled Components

Optional PHP Extensions

Links

Contributing

It is publicly open for any contribution. Bugfixes, new features and extra modules are welcome. All contributions should be filed on the eserozvataf/scabbia1 repository.