svg
This commit is contained in:
@ -14,6 +14,7 @@
|
|||||||
"ext-ctype": "*",
|
"ext-ctype": "*",
|
||||||
"ext-iconv": "*",
|
"ext-iconv": "*",
|
||||||
"apereo/phpcas": "^1.6",
|
"apereo/phpcas": "^1.6",
|
||||||
|
"bnine/filesbundle": "^1.0",
|
||||||
"doctrine/dbal": "^3",
|
"doctrine/dbal": "^3",
|
||||||
"doctrine/doctrine-bundle": "^2.13",
|
"doctrine/doctrine-bundle": "^2.13",
|
||||||
"doctrine/doctrine-migrations-bundle": "^3.3",
|
"doctrine/doctrine-migrations-bundle": "^3.3",
|
||||||
@ -120,4 +121,4 @@
|
|||||||
"symfony/stopwatch": "7.1.*",
|
"symfony/stopwatch": "7.1.*",
|
||||||
"symfony/web-profiler-bundle": "7.1.*"
|
"symfony/web-profiler-bundle": "7.1.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
39
composer.lock
generated
39
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "c3ef6a5f644e6a15e10fc734845aa216",
|
"content-hash": "5aaa9ef4d4fe029a60e73e3590fc5109",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "apereo/phpcas",
|
"name": "apereo/phpcas",
|
||||||
@ -77,6 +77,43 @@
|
|||||||
},
|
},
|
||||||
"time": "2023-02-19T19:52:35+00:00"
|
"time": "2023-02-19T19:52:35+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "bnine/filesbundle",
|
||||||
|
"version": "v1.0.31",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/afornerot/bNine-FilesBundle.git",
|
||||||
|
"reference": "b9a1cf8d2ec53abf34309ae721f9136a8eca9b66"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/afornerot/bNine-FilesBundle/zipball/b9a1cf8d2ec53abf34309ae721f9136a8eca9b66",
|
||||||
|
"reference": "b9a1cf8d2ec53abf34309ae721f9136a8eca9b66",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=8.1",
|
||||||
|
"symfony/framework-bundle": "^6.0 || ^7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"friendsofphp/php-cs-fixer": "^3.85"
|
||||||
|
},
|
||||||
|
"type": "symfony-bundle",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Bnine\\FilesBundle\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"description": "Symfony bundle for file-browser",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/afornerot/bNine-FilesBundle/tree/v1.0.31",
|
||||||
|
"issues": "https://github.com/afornerot/bNine-FilesBundle/issues"
|
||||||
|
},
|
||||||
|
"time": "2025-08-01T17:06:06+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "brick/math",
|
"name": "brick/math",
|
||||||
"version": "0.13.1",
|
"version": "0.13.1",
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Debug autoload
|
|
||||||
if (!class_exists(Bnine\FilesBundle\BnineFilesBundle::class)) {
|
|
||||||
echo "Classe non trouvée\n";
|
|
||||||
var_dump(__DIR__, file_exists(__DIR__.'/../vendor/bnine/files-bundle/src/BnineFilesBundle.php'));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||||||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||||||
|
@ -5,5 +5,5 @@ controllers:
|
|||||||
type: attribute
|
type: attribute
|
||||||
|
|
||||||
bninefilesbundle:
|
bninefilesbundle:
|
||||||
resource: '../vendor/bnine/files-bundle/config/routes.yaml'
|
resource: '../vendor/bnine/filesbundle/config/routes.yaml'
|
||||||
prefix: '/bninefiles'
|
prefix: '/bninefiles'
|
@ -2,6 +2,9 @@
|
|||||||
"bnine/files-bundle": {
|
"bnine/files-bundle": {
|
||||||
"version": "v1.0.1"
|
"version": "v1.0.1"
|
||||||
},
|
},
|
||||||
|
"bnine/filesbundle": {
|
||||||
|
"version": "v1.0.27"
|
||||||
|
},
|
||||||
"doctrine/deprecations": {
|
"doctrine/deprecations": {
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"recipe": {
|
"recipe": {
|
||||||
|
Reference in New Issue
Block a user