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

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

manuelj555/upload-data-bundle
=============================

Symfony UploadDataBundle

v2.0.2(7y ago)111.5k↓50%1MITPHP

Since Oct 28Pushed 3y ago2 watchersCompare

[ Source](https://github.com/manuelj555/UploadDataBundle2)[ Packagist](https://packagist.org/packages/manuelj555/upload-data-bundle)[ RSS](/packages/manuelj555-upload-data-bundle/feed)WikiDiscussions 5.0 Synced 1mo ago

READMEChangelog (4)Dependencies (3)Versions (12)Used By (0)

UploadDataBundle2
=================

[](#uploaddatabundle2)

Bundle para la gestión de carga de archivo de datos

Instalación
-----------

[](#instalación)

Ejecutar

```
composer require "manuelj555/upload-data-bundle" "~5.0@dev"

```

Luego de ello, registrar los bundles en el **config/bundles.php**:

```
return [
    ...
    Manuel\Bundle\UploadDataBundle\UploadDataBundle::class => ['all' => true],
];
```

Por ultimo se debe crear la base de datos (si no se ha hecho aun) y agregar a la bd las tablas competentes al bundle, por lo que se deben ejecutar los siguientes comandos de consola:

```
app\console doctrine:database:create
console doctrine:schema:update --force

```

Si se prefiere, se pueden ejecutar los siguientes queries para crear las tablas necesarias:

```
CREATE TABLE upload_data_upload (id INT AUTO_INCREMENT NOT NULL, columns_match JSON DEFAULT NULL, filename VARCHAR(255) DEFAULT NULL, full_filename VARCHAR(255) DEFAULT NULL, file VARCHAR(255) DEFAULT NULL, config_class VARCHAR(255) NOT NULL, valids INT DEFAULT NULL, invalids INT DEFAULT NULL, total INT DEFAULT NULL, uploaded_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)', PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB;
CREATE TABLE upload_data_upload_action (id INT AUTO_INCREMENT NOT NULL, upload_id INT DEFAULT NULL, name VARCHAR(255) NOT NULL, status SMALLINT NOT NULL, completed_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)', completed TINYINT(1) DEFAULT NULL, INDEX IDX_676B5C8CCCFBA31 (upload_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB;
CREATE TABLE upload_data_upload_attribute (id INT AUTO_INCREMENT NOT NULL, upload_id INT DEFAULT NULL, name VARCHAR(255) NOT NULL, value JSON DEFAULT NULL, INDEX IDX_BE6193F4CCCFBA31 (upload_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB;
CREATE TABLE upload_data_uploaded_item (id INT AUTO_INCREMENT NOT NULL, upload_id INT DEFAULT NULL, file_row_number INT DEFAULT NULL, data JSON DEFAULT NULL, extras JSON DEFAULT NULL, errors JSON DEFAULT NULL, valid TINYINT(1) DEFAULT NULL, INDEX IDX_EB128DB1CCCFBA31 (upload_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB;
ALTER TABLE upload_data_upload_action ADD CONSTRAINT FK_676B5C8CCCFBA31 FOREIGN KEY (upload_id) REFERENCES upload_data_upload (id);
ALTER TABLE upload_data_upload_attribute ADD CONSTRAINT FK_BE6193F4CCCFBA31 FOREIGN KEY (upload_id) REFERENCES upload_data_upload (id);
ALTER TABLE upload_data_uploaded_item ADD CONSTRAINT FK_EB128DB1CCCFBA31 FOREIGN KEY (upload_id) REFERENCES upload_data_upload (id);
```

Con esto ya se ha instalado correctamente el bundle.

Cargando Archivos
-----------------

[](#cargando-archivos)

[Uso](./Resources/doc/usage.md)

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 65.6% 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 ~261 days

Recently: every ~219 days

Total

10

Last Release

1561d ago

Major Versions

v1.1 → v2.0.02019-05-09

1.0.x-dev → 4.0.x-dev2021-11-08

2.0.x-dev → 3.0.x-dev2021-11-17

3.0.x-dev → 5.0.x-dev2022-02-07

### Community

Maintainers

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

---

Top Contributors

[![manuelj555](https://avatars.githubusercontent.com/u/1214013?v=4)](https://github.com/manuelj555 "manuelj555 (141 commits)")[![maguirreoptime](https://avatars.githubusercontent.com/u/213988915?v=4)](https://github.com/maguirreoptime "maguirreoptime (61 commits)")[![jaguilaroptime](https://avatars.githubusercontent.com/u/22624776?v=4)](https://github.com/jaguilaroptime "jaguilaroptime (11 commits)")[![juandleon-dev](https://avatars.githubusercontent.com/u/31638767?v=4)](https://github.com/juandleon-dev "juandleon-dev (2 commits)")

---

Tags

bundleexcelupload

### Embed Badge

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

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

###  Alternatives

[presta/image-bundle

PrestaImageBundle is a Symfony bundle providing tools to resize uploaded and remote images before sending them through a classic form.

24155.9k](/packages/presta-image-bundle)

PHPackages © 2026

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