PHPackages                             comfyphp/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. comfyphp/core

AbandonedLibrary[Framework](/categories/framework)

comfyphp/core
=============

Write PHP comfortably with ComfyPHP

v2.0.1(2y ago)0252MITPHP &gt;=8.0

Since Jun 29Compare

[ Source](https://github.com/comfyphp/core)[ Packagist](https://packagist.org/packages/comfyphp/core)[ Docs](https://github.com/comfyphp/core)[ RSS](/packages/comfyphp-core/feed)WikiDiscussions Synced yesterday

READMEChangelog (4)DependenciesVersions (5)Used By (2)

Write PHP comfortably with ComfyPHP
===================================

[](#write-php-comfortably-with-comfyphp)

Provide an better development environment for developers who targeting specialized environments, such as Internet Explorer or environments where JavaScript is disabled.

Framework Directory Structure
-----------------------------

[](#framework-directory-structure)

```
├── public
│   └── index.php
├── src
│   └── pages
│       ├── _document.php
│       └── index.php
├── .env.development.local
├── .env.development
├── .env.production.local
├── .env.production
├── .env.local
├── .env
└── comfy.config.php

```

Before Using it
---------------

[](#before-using-it)

Required dependencies for ComfyPHP:

- [PHP](https://www.php.net/downloads.php)
- [Composer](https://getcomposer.org/download/)

Download / Install
------------------

[](#download--install)

To use this framework, you can install it with Composer.

```
composer require comfyphp/core
```

Basic `public/index.php` format
-------------------------------

[](#basic-publicindexphp-format)

You can create `index.php` inside the public folder like the example provided below:

```
