gitextract_5xugku7m/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug.md │ │ ├── Feature_Request.md │ │ └── Question.md │ └── workflows/ │ ├── ci.yml │ └── docs.yml ├── .gitignore ├── .php_cs.cache ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── autoload.php ├── composer.json ├── docs/ │ ├── cloud_upload.md │ ├── couscous.yml │ ├── custom_validation.md │ ├── file_locking.md │ ├── index.md │ ├── installation.md │ ├── integrations.md │ ├── simple_example.md │ ├── upload_aggregator.md │ ├── upload_options.md │ └── validation_rules.md ├── phpstan.neon ├── phpunit.xml ├── src/ │ ├── Container/ │ │ ├── ContainerInterface.php │ │ └── Local.php │ ├── Exception/ │ │ ├── InvalidContainerException.php │ │ └── InvalidResultException.php │ ├── Handler.php │ ├── HandlerAggregate.php │ ├── Result/ │ │ ├── Collection.php │ │ ├── File.php │ │ └── ResultInterface.php │ ├── UploadHandlerInterface.php │ └── Util/ │ └── Helper.php └── tests/ ├── .phpunit.result.cache ├── Pest.php ├── TestCase.php ├── phpunit.xml ├── phpunit_bootstrap.php ├── src/ │ ├── Container/ │ │ └── LocalTest.php │ ├── HandlerAggregateTest.php │ └── HandlerTest.php └── web/ └── index.php