PHPackages                             matiasnamendola/slimpower-one - 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. matiasnamendola/slimpower-one

ActiveLibrary[Framework](/categories/framework)

matiasnamendola/slimpower-one
=============================

Slimpower Framework - lightweight version

v0.0.1-alpha(9y ago)06MITPHPPHP &gt;=5.3.0

Since Dec 13Pushed 9y ago1 watchersCompare

[ Source](https://github.com/MatiasNAmendola/slimpower-one)[ Packagist](https://packagist.org/packages/matiasnamendola/slimpower-one)[ Docs](https://github.com/matiasnamendola/slimpower-slim-one)[ RSS](/packages/matiasnamendola-slimpower-one/feed)WikiDiscussions master Synced 3d ago

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

SlimPower - ONE

[![Latest version](https://camo.githubusercontent.com/6510a5dca8eaf6c90a68ac99a0fe636191988ca3690533e5c4fca568dc2ae99c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f4d61746961734e416d656e646f6c612f736c696d706f7765722d6f6e652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-one)[![Total Downloads](https://camo.githubusercontent.com/d5e23395fb217bbb3ccafe5784b80a136e03bb19b02359a0b1fa2647b2d6a702/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f4d61746961734e416d656e646f6c612f736c696d706f7765722d6f6e652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-one)

[![Latest Stable Version](https://camo.githubusercontent.com/1e38bbaa44f7906b155ef995eced1051be9569ab6f9ac323cfc35a34f3ef199a/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f76657273696f6e3f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-slim)[![Latest Unstable Version](https://camo.githubusercontent.com/0971872cbc14976036ea0d4c57b3fb7df21da17d5d6b613ef1b27962fc4e5645/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f762f756e737461626c653f666f726d61743d666c61742d737175617265)](//packagist.org/packages/matiasnamendola/slimpower-slim)[![Total Downloads](https://camo.githubusercontent.com/196f4db6cfdb847a67784212f8b8caeb442f42d702f9bb37edcc8eb40f353184/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f646f776e6c6f6164733f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-slim)[![Monthly Downloads](https://camo.githubusercontent.com/0007ab5db5aafe28835c349bf550afccedac3dd4ad26ab29d58c46909f6eca2a/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f642f6d6f6e74686c793f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-slim)[![Daily Downloads](https://camo.githubusercontent.com/826c24a73b066f317188caeee3c6ee69273e7b481fb8d4697ce5a1c33a5744fd/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f642f6461696c793f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-slim)[![composer.lock available](https://camo.githubusercontent.com/4e30f82cbf9979822fe7e3246f64ffe0500563efc1bf18dda172096f74a03eb0/68747470733a2f2f706f7365722e707567782e6f72672f6d61746961736e616d656e646f6c612f736c696d706f7765722d6f6e652f636f6d706f7365726c6f636b3f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/matiasnamendola/slimpower-slim)

Slimpower Framework - lightweight version

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

[](#installation)

Create folder /var/www/slimpower and download this repository

In terminal:

```
mkdir /var/www/slimpower
cd /var/www/slimpower
composer require matiasnamendola/slimpower-one
```

Or you can add use this as your composer.json:

```
{
    "require": {
        "slim/slim": "2.*",
        "matiasnamendola/slimpower-one": "dev-master"
    }
}
```

### .htaccess

[](#htaccess)

Here's an .htaccess sample for simple RESTful API's

```

    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [QSA,L]

```

or

```

    Header always set Access-Control-Allow-Headers "Authorization"

```

### Apache VirtualHost

[](#apache-virtualhost)

Create conf file 'slimpower.conf' in folder '/etc/apache2/sites-available' with this content:

```

    ServerAdmin     webmaster@localhost
    ServerName      dev.slimpower.com
    DocumentRoot    /var/www/slimpower
    ErrorLog        /var/log/apache2/slimpower-custom-error.log
    CustomLog       /var/log/apache2/slimpower-custom.log common
    #TransferLog    /var/log/apache2/slimpower-custom.log

            Options -Indexes
            AllowOverride AuthConfig FileInfo
            AddOutputFilterByType DEFLATE text/html
            AddOutputFilterByType DEFLATE text/css
            AddOutputFilterByType DEFLATE application/x-javascript
            AddOutputFilterByType DEFLATE image/gif

        order allow,deny
        deny from all

        order allow,deny
        deny from all

        order allow,deny
        deny from all

        Order deny,allow
        Deny from all

```

Next, copy this in terminal:

```
sudo a2ensite 000-slimpower
sudo /etc/init.d/apache2 restart
```

or

```
sudo a2ensite 000-slimpower
sudo service apache2 restart
```

Credits
-------

[](#credits)

- [Matías Nahuel Améndola](https://github.com/matiasnamendola)
- [Franco Soto](https://github.com/francosoto)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

3487d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6f2fff748a973d02f4bb0e09462f94bf05fc1afa31cbdb6826e33a41e6fa8d4c?d=identicon)[matiasamendola](/maintainers/matiasamendola)

---

Top Contributors

[![MatiasNAmendola](https://avatars.githubusercontent.com/u/2144218?v=4)](https://github.com/MatiasNAmendola "MatiasNAmendola (16 commits)")

---

Tags

slimslimpower

### Embed Badge

![Health badge](/badges/matiasnamendola-slimpower-one/health.svg)

```
[![Health](https://phpackages.com/badges/matiasnamendola-slimpower-one/health.svg)](https://phpackages.com/packages/matiasnamendola-slimpower-one)
```

###  Alternatives

[symfony/symfony

The Symfony PHP framework

31.4k87.2M2.2k](/packages/symfony-symfony)[cakephp/cakephp

The CakePHP framework

8.9k19.5M1.7k](/packages/cakephp-cakephp)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k34](/packages/neuron-core-neuron-ai)[algolia/algoliasearch-client-php

API powering the features of Algolia.

69735.1M148](/packages/algolia-algoliasearch-client-php)

PHPackages © 2026

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