Skip to content

Commit

Permalink
Merge pull request #22 from nucleos/replace-core23
Browse files Browse the repository at this point in the history
Replace deprecated core23 library with nucelos library
  • Loading branch information
core23 authored Aug 29, 2020
2 parents 730c65d + 2deaf64 commit 4eb09ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"php": "^7.3",
"ext-json": "*",
"ext-soap": "*",
"core23/twig-extensions": "^1.4",
"nucleos/twig-extensions": "^2.0",
"psr/log": "^1.0",
"sonata-project/block-bundle": "^3.21 || ^4.2",
"sonata-project/doctrine-extensions": "^1.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/App/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

namespace Nucleos\AllInklBundle\Tests\App;

use Core23\Twig\Bridge\Symfony\Bundle\Core23TwigBundle;
use Nucleos\AllInklBundle\NucleosAllInklBundle;
use Nucleos\AllInklBundle\Tests\App\Controller\TestController;
use Nucleos\Twig\Bridge\Symfony\Bundle\NucleosTwigBundle;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Bundle\TwigBundle\TwigBundle;
Expand Down Expand Up @@ -42,7 +42,7 @@ public function registerBundles()
{
yield new FrameworkBundle();
yield new TwigBundle();
yield new Core23TwigBundle();
yield new NucleosTwigBundle();
yield new NucleosAllInklBundle();
}

Expand Down

0 comments on commit 4eb09ca

Please sign in to comment.