PHPackages                             alisahanyalcin/infinity-core - 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. [Framework](/categories/framework)
4. /
5. alisahanyalcin/infinity-core

ActiveProject[Framework](/categories/framework)

alisahanyalcin/infinity-core
============================

InfinityCore is a PHP framework for building web applications.

1.0.0(4y ago)14MITPHPPHP ^7.4

Since Jan 16Pushed 4y ago1 watchersCompare

[ Source](https://github.com/alisahanyalcin/InfinityCore)[ Packagist](https://packagist.org/packages/alisahanyalcin/infinity-core)[ Docs](https://alisahanyalcin.github.io/InfinityCore/)[ RSS](/packages/alisahanyalcin-infinity-core/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (2)Used By (0)

InfinityCore
============

[](#infinitycore)

InfinityCore is a PHP framework for building web applications.

Installation
------------

[](#installation)

create project via composer:

```
composer create-project alisahanyalcin/infinity-core:dev-master app-name
cd app-name

```

or run the following command directly:

```
git clone https://github.com/alisahanyalcin/InfinityCore.git
cd InfinityCore
composer install

```

Basic Usage
===========

[](#basic-usage)

**You can found full documentation at [Wiki](https://github.com/alisahanyalcin/InfinityCore/wiki).**

Config
------

[](#config)

`Application/config/AppConfig.php`

```
const base_url = 'http://localhost/InfinityCore/';

// development, production, testing
const ENVIRONMENT = 'production';

const TIMEZONE = 'Europe/Istanbul';
```

`Application/config/DBConfig.php`

```
const dbConfig = [
    'debug'     => true,
    'host'      => 'localhost',
    'driver'	=> 'mysql',
    'database'	=> 'testDB',
    'username'	=> 'root',
    'password'	=> '',
    'charset'	=> 'utf8',
    'collation'	=> 'utf8_general_ci',
    'prefix'	=> ''
];
```

Application
-----------

[](#application)

```
