Skip to content

Commit

Permalink
Change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
massimo-me committed Jul 21, 2016
1 parent e619fe2 commit 7f311ae
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Skuola\SeoBundle\DependencyInjection;
namespace OpenSkuola\SeoBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/SkuolaSeoExtension.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Skuola\SeoBundle\DependencyInjection;
namespace OpenSkuola\SeoBundle\DependencyInjection;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
Expand Down
2 changes: 1 addition & 1 deletion Extension/Twig/PaginationMetaExtension.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Skuola\SeoBundle\Extension\Twig;
namespace OpenSkuola\SeoBundle\Extension\Twig;

use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
use Symfony\Component\Routing\Generator\UrlGenerator;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function registerBundles()
{
return array(
// ...
new Skuola\SeoBundle\SkuolaSeoBundle()
new OpenSkuola\SeoBundle\SkuolaSeoBundle()
);
}
```
2 changes: 1 addition & 1 deletion Resources/config/parameters.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
parameters:
skuola_seo.twig_pagination_meta.extension.class: Skuola\SeoBundle\Extension\Twig\PaginationMetaExtension
skuola_seo.twig_pagination_meta.extension.class: OpenSkuola\SeoBundle\Extension\Twig\PaginationMetaExtension
2 changes: 1 addition & 1 deletion SkuolaSeoBundle.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Skuola\SeoBundle;
namespace OpenSkuola\SeoBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;

Expand Down
4 changes: 2 additions & 2 deletions Tests/Unit/Extension/Twig/PaginationMetaExtensionTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Skuola\SeoBundle\Tests\Extension;
namespace OpenSkuola\SeoBundle\Tests\Extension;

use Skuola\SeoBundle\Extension\Twig\PaginationMetaExtension;
use OpenSkuola\SeoBundle\Extension\Twig\PaginationMetaExtension;
use Symfony\Component\Routing\Router;
use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
use Mockery as m;
Expand Down
2 changes: 1 addition & 1 deletion Tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
EOT
);
}
$loader->add('Skuola\SeoBundle\Tests', __DIR__);
$loader->add('OpenSkuola\SeoBundle\Tests', __DIR__);
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-0": { "Skuola\\SeoBundle": "" }
"psr-4": { "OpenSkuola\\SeoBundle\\": "" }
},
"target-dir": "Skuola/SeoBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
Expand Down

0 comments on commit 7f311ae

Please sign in to comment.