PHPackages                             blueraster/csfilesystem - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. blueraster/csfilesystem

ActiveLibrary[File &amp; Storage](/categories/file-storage)

blueraster/csfilesystem
=======================

v1.0.1(5y ago)0151MITTwig

Since Nov 10Pushed 4y ago3 watchersCompare

[ Source](https://github.com/blueraster/csfilesystem)[ Packagist](https://packagist.org/packages/blueraster/csfilesystem)[ RSS](/packages/blueraster-csfilesystem/feed)WikiDiscussions main Synced 6d ago

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

CSFilesystem
============

[](#csfilesystem)

Install
-------

[](#install)

```
php composer.phar require blueraster/csfilesystem

## or use below if you receive an error about minimum-stability

php composer.phar require blueraster/csfilesystem dev-main

```

> If you receive errors on installation see the [Troubleshooting Installation](#troubleshooting-installation) section at the bottom of this document

Configuration
-------------

[](#configuration)

Register the bundle in `app/AppKernel.php`

```
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),

            // add this line before AppBundle()
            new BlueRaster\CSFilesystem\CSFilesystemBundle(),

            new AppBundle\AppBundle(),
        ];
```

Add the routes to `app/config/routing.yml`

```
app:
    resource: '@AppBundle/Controller/ui'
    type: annotation
csfilesystem:
    resource: '@CSFilesystemBundle/FilesController.php'
    type: annotation
```

> If you're getting an error message on the `/file-manager/` page, you need to clear the application's cache. Delete files in the directory `var/cache`

JS Snippet to add menu item
---------------------------

[](#js-snippet-to-add-menu-item)

If you would like a link to the files page, add the following snippet to the bottom of the JavaScript file located at: `dist/js/sb-admin-2.js`

```
(function(d){
	('addEventListener' in window) && window.addEventListener("load", function(){
		var menu = d.getElementById("side-menu");
		var li = d.createElement("li");
		li.innerHTML = ' List Files';
		menu && menu.appendChild(li);
	});
})(document);
```

Troubleshooting Installation
----------------------------

[](#troubleshooting-installation)

In some cases you may receive errors during installation. Please note the following for help with this.

#### PHP Version Errors

[](#php-version-errors)

You may receiver an error on installation mentioning PHP versions. For some versions of CSWeb, a specific PHP version has been specified in your `package.json` file. To remove it from the command line:

```
php composer.phar config --unset platform.php

```

Or simply remove the section manually from `composer.json`

#### Out of Memory Error

[](#out-of-memory-error)

If you receive an error similar to:

```
PHP Fatal error:  Allowed memory size of 1610612736 bytes exhausted (tried to allocate 134217736 bytes)

```

This is due to a script intended for internal development that runs on updates. To fix this, add `--no-scripts` to all `require` and `install` commands. To permanently prevent this, use the command:

```
php composer.phar config --unset scripts.post-update-cmd

```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% 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

2014d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c333ee6f326dcf1db86250abc626934305f2a584ad240fffd26ca14c111016e?d=identicon)[g3n1us](/maintainers/g3n1us)

---

Top Contributors

[![g3n1us](https://avatars.githubusercontent.com/u/2233924?v=4)](https://github.com/g3n1us "g3n1us (4 commits)")[![xhaferrama](https://avatars.githubusercontent.com/u/12653854?v=4)](https://github.com/xhaferrama "xhaferrama (1 commits)")

### Embed Badge

![Health badge](/badges/blueraster-csfilesystem/health.svg)

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

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[dgtlss/capsule

A Laravel package for backing up databases and files to external sources with notifications

194.3k](/packages/dgtlss-capsule)[luoyy/ali-oss-storage

aliyun oss filesystem storage for laravel 9+

1529.9k1](/packages/luoyy-ali-oss-storage)

PHPackages © 2026

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