PHPackages                             kematjaya/upload-bundle - 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. kematjaya/upload-bundle

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

kematjaya/upload-bundle
=======================

8.0.2(2mo ago)21.9kMITPHP

Since Dec 7Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/kematjaya0/upload-bundle)[ Packagist](https://packagist.org/packages/kematjaya/upload-bundle)[ RSS](/packages/kematjaya-upload-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (19)Versions (51)Used By (0)

upload-bundle
=============

[](#upload-bundle)

1. installation

```
composer require kematjaya/upload-bundle

```

2. add to bundles.php

```
...
Kematjaya\UploadBundle\UploadBundle::class => ['all' => true]
...

```

3. Update schema database

```
php bin/console doctrine:schema:update --force

```

4. import route

```
## config/routes/annotations.yaml
...
upload:
    resource: '@UploadBundle/Resources/routes/all.yml'
...

```

5. Set Upload directory

```
// config/packages/upload.yaml
upload:
    uploads_dir: '%kernel.project_dir%/public/uploads'

```

6. use KmjFileType in form

```
...
use Kematjaya\UploadBundle\Type\KmjFileType;
...
...
public function buildForm(FormBuilderInterface $builder, array $options)
{
    ...
    $builder->add('attachment', KmjFileType::class, [
      'label' => 'attachment'
    ]);

    // or add additional directory inside upload dir
    $builder->add('attachment', KmjFileType::class, [
      'label' => 'attachment',
      'additional_path' => 'foo'
    ]);
    ...
}

```

7. update your database schema

```
php bin/console doctrine:schema:update --force

```

8. add form theme in config/packages/twig.yml

```
twig:
    form_themes: [
        '@Upload/fields.html.twig',
        ......
    ]

```

###  Health Score

48

—

FairBetter than 95% of packages

Maintenance83

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 97.8% 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 ~39 days

Recently: every ~9 days

Total

49

Last Release

85d ago

Major Versions

1.7.2 → 2.02021-04-15

2.1 → 3.02021-06-07

3.4.5 → 7.02024-10-24

7.0.5 → 8.0-BETA2026-01-18

1.7.3 → 8.0.12026-02-03

### Community

Maintainers

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

---

Top Contributors

[![kematjaya0](https://avatars.githubusercontent.com/u/36223951?v=4)](https://github.com/kematjaya0 "kematjaya0 (45 commits)")[![ardith666](https://avatars.githubusercontent.com/u/53547938?v=4)](https://github.com/ardith666 "ardith666 (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kematjaya-upload-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/kematjaya-upload-bundle/health.svg)](https://phpackages.com/packages/kematjaya-upload-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M310](/packages/easycorp-easyadmin-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)

PHPackages © 2026

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