PHPackages                             meow/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. meow/core

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

meow/core
=========

Meow core library

v0.1.1(1y ago)04MITPHP

Since Apr 18Pushed 1y agoCompare

[ Source](https://github.com/meowphp/core)[ Packagist](https://packagist.org/packages/meow/core)[ RSS](/packages/meow-core/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

core
====

[](#core)

**namespace:** `Meow\Core`

Base for web applications. This is wrapper arround `meow\di` and `meow\router`. On top of it, it contains also functionality for reading configuration from arrays

[![ko-fi](https://camo.githubusercontent.com/201ef269611db7eb6b5d08e9f756ab8980df3014b64492770bdf13a6ed924641/68747470733a2f2f6b6f2d66692e636f6d2f696d672f676974687562627574746f6e5f736d2e737667)](https://ko-fi.com/D1D5DMOTA)

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

[](#installation)

To instal this one use following command

```
composer require meow/core
```

Creating new application
------------------------

[](#creating-new-application)

Create new application by creating new instance of `Meow\Core\Application`

```
require '../config/paths.php';

$app = new \Meow\Core\Application();
```

By default application will look for configuration and register new routes and services from `application.php` file in `CONFIG` folder. Here is example of that config file:

```
return [
    /**
    * Register your application's controller here, this are used for configuring routes
    */
    'Controllers' => [
        \May\AttributesTest\MainController::class,
        \May\AttributesTest\Controllers\ExampleController::class
    ],

    /**
     * Application Services
     */
    'Services' =>
    [
        /**
         * Application services
         */
        \Meow\AttributesTest\Database\DatabaseServiceProviderInterface::class => \Meow\AttributesTest\Database\DatabaseServiceProvider::class,
    ],

    //... more configuration
];
```

Getting result from controller
------------------------------

[](#getting-result-from-controller)

This is what you congroller returns. To get the controller from uri you can do this:

```
    if (!isset($_SERVER['PATH_INFO'])) {
        $request_uri = '/';
    } else {
        $request_uri = $_SERVER['PATH_INFO'];
    }
    $result = $app->callController($request_uri); // controllers should return string
```

**License: MIT**

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance47

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

395d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f7c2bca298b9947b96e7d8ecc3e58d2a63caf97adb52d28c07dc8b9468cdabb6?d=identicon)[maymeow](/maintainers/maymeow)

---

Top Contributors

[![MayMeow](https://avatars.githubusercontent.com/u/3164256?v=4)](https://github.com/MayMeow "MayMeow (7 commits)")

### Embed Badge

![Health badge](/badges/meow-core/health.svg)

```
[![Health](https://phpackages.com/badges/meow-core/health.svg)](https://phpackages.com/packages/meow-core)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
