Skip to content
Snippets Groups Projects
Select Git revision
  • 50b3c817b1ecdd7b7bc6d0efed87c132485dbf79
  • master default protected
  • detached4
  • detached3
  • detached2
  • bsv-next
  • detached
  • php82
  • 6.x
  • 6.4.0
  • 6.3.3
  • 6.3.2
  • 6.3.1
  • 6.3.0
  • 6.2.7
  • 6.2.6
  • 6.2.5
  • 6.2.4
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.3
  • 6.1.2
  • 6.1.1
  • 6.1.0
  • 6.0.0
27 results

AxiosModel.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    fichier.local.php.dist 623 B
    <?php
    
    use UnicaenFichier\Filter\FileName\NatureBasedFileNameFormatter;
    use UnicaenStorage\Adapter\FilesystemStorageAdapter;
    
    return [
        'fichier' => [
            //Permet de fournir une configuration spécifique pour les formulaire d'upload de fichier
            'uplpoad' => [
                'max-size' => '2MB',
                'extentions' => ['pdf', 'csv'], // Extention des fichiers autorisée
                //Pour les csv typeMine = text/plain
                'type-mine' => ['application/pdf', 'text/plain'],
                'validators' => [],
            ],
    
            'file-name-formatter' => NatureBasedFileNameFormatter::class,
        ],
    ];