Minor - update composer.json, fix comments

pull/2715/head
Julio Montoya 6 years ago
parent a305e05b0b
commit a84711ec36
  1. 8
      composer.json
  2. 4
      src/AdminBundle/ChamiloAdminBundle.php

@ -3,7 +3,7 @@
"description": "E-learning and collaboration software", "description": "E-learning and collaboration software",
"type": "project", "type": "project",
"homepage": "http://www.chamilo.org", "homepage": "http://www.chamilo.org",
"license": "GPL-3.0", "license": "GPL-3.0-or-later",
"support": { "support": {
"forum": "https://chamilo.org/forum", "forum": "https://chamilo.org/forum",
"irc": "irc://irc.freenode.org/chamilo", "irc": "irc://irc.freenode.org/chamilo",
@ -13,8 +13,7 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Chamilo\\": "src/", "Chamilo\\": "src/"
"Application\\": "app/"
}, },
"classmap": [ "classmap": [
"main/auth", "main/auth",
@ -71,7 +70,6 @@
"symfony/annotations-pack": "^1.0", "symfony/annotations-pack": "^1.0",
"symfony/webpack-encore-pack": "^1.0", "symfony/webpack-encore-pack": "^1.0",
"symfony/apache-pack": "^1.0", "symfony/apache-pack": "^1.0",
"symfony/var-dumper": "^4.0",
"apy/datagrid-bundle" : "dev-master", "apy/datagrid-bundle" : "dev-master",
@ -103,7 +101,6 @@
"sunra/php-simple-html-dom-parser": "~1.5.0", "sunra/php-simple-html-dom-parser": "~1.5.0",
"sylius/resource-bundle": "1.2.*", "sylius/resource-bundle": "1.2.*",
"friendsofsymfony/jsrouting-bundle": "~2.0", "friendsofsymfony/jsrouting-bundle": "~2.0",
"gedmo/doctrine-extensions": "~2.4", "gedmo/doctrine-extensions": "~2.4",
"gregwar/captcha-bundle": "^2.0", "gregwar/captcha-bundle": "^2.0",
@ -160,6 +157,7 @@
"firebase/php-jwt": "^5.0" "firebase/php-jwt": "^5.0"
}, },
"require-dev": { "require-dev": {
"symfony/var-dumper": "^4.0",
"friendsofphp/php-cs-fixer": "^2.7", "friendsofphp/php-cs-fixer": "^2.7",
"symfony/browser-kit": "^4.0", "symfony/browser-kit": "^4.0",
"symfony/css-selector": "^4.0", "symfony/css-selector": "^4.0",

@ -6,9 +6,9 @@ namespace Chamilo\AdminBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\HttpKernel\Bundle\Bundle;
/** /**
* Class ApplicationSonataAdminBundle. * Class ChamiloAdminBundle.
* *
* @package Application\Sonata\AdminBundle * @package Chamilo\AdminBundle
*/ */
class ChamiloAdminBundle extends Bundle class ChamiloAdminBundle extends Bundle
{ {

Loading…
Cancel
Save