-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from netlogix/develop
change namespace
- Loading branch information
Showing
17 changed files
with
42 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
{ | ||
"name": "scarbous/tolgee-translation-provider", | ||
"name": "netlogix/symfony-tolgee-translation-provider", | ||
"description": "Symfony Tolgee Translation Provider Bridge", | ||
"homepage": "https://github.com/netlogix/symfony-tolgee-translation-provider", | ||
"support":{ | ||
"source": "https://github.com/netlogix/symfony-tolgee-translation-provider/", | ||
"docs": "https://github.com/netlogix/symfony-tolgee-translation-provider/blob/main/README.md", | ||
"issues": "https://github.com/netlogix/symfony-tolgee-translation-provider/issues" | ||
}, | ||
"type": "symfony-bridge", | ||
"keywords": [ | ||
"tolgee", | ||
|
@@ -9,18 +15,19 @@ | |
], | ||
"authors": [ | ||
{ | ||
"name": "Sascha Heilmeier" | ||
"name": "Sascha Heilmeier", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"Scarbous\\TolgeeTranslationProvider\\": "src/" | ||
"Netlogix\\SymfonyTolgeeTranslationProvider\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Scarbous\\TolgeeTranslationProvider\\Test\\": "tests/" | ||
"Netlogix\\SymfonyTolgeeTranslationProvider\\Test\\": "tests/" | ||
} | ||
}, | ||
"require": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.3/phpunit.xsd" | ||
backupGlobals="false" | ||
|
@@ -11,7 +10,7 @@ | |
<php> | ||
<ini name="error_reporting" value="-1" /> | ||
<server name="APP_ENV" value="test" force="true" /> | ||
<server name="KERNEL_CLASS" value="Scarbous\TolgeeTranslationProvider\Test\App\TestKernel" /> | ||
<server name="KERNEL_CLASS" value="Netlogix\SymfonyTolgeeTranslationProvider\Test\App\TestKernel" /> | ||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" /> | ||
<env name="TOLGEE_DSN" value="tolgee://1:[email protected]/"/> | ||
</php> | ||
|
3 changes: 2 additions & 1 deletion
3
src/DependencyInjection/TolgeeTranslationProviderExtension.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Symfony\Component\DependencyInjection\Loader\Configurator; | ||
|
||
use Scarbous\TolgeeTranslationProvider\TolgeeProviderFactory; | ||
use Netlogix\SymfonyTolgeeTranslationProvider\TolgeeProviderFactory; | ||
|
||
// @codeCoverageIgnoreStart | ||
return static function (ContainerConfigurator $container) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Scarbous\TolgeeTranslationProvider; | ||
namespace Netlogix\SymfonyTolgeeTranslationProvider; | ||
|
||
use Psr\Log\LoggerInterface; | ||
use Scarbous\TolgeeTranslationProvider\Exception\TolgeeException; | ||
use Netlogix\SymfonyTolgeeTranslationProvider\Exception\TolgeeException; | ||
use Symfony\Component\HttpClient\Exception\ClientException; | ||
use Symfony\Component\HttpClient\Exception\RedirectionException; | ||
use Symfony\Component\HttpClient\Exception\ServerException; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters