Skip to content

Commit 833085c

Browse files
committed
Update minimum requirements and namespace
1 parent 0ba8321 commit 833085c

8 files changed

+27
-40
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Contao Sentry Bundle
22
====================
33

4-
This Contao bundle provides an easy integration of [sentry.io](https://sentry.io/) for Contao 4.4.x and newer.
4+
This Contao bundle provides an easy integration of [sentry.io](https://sentry.io/) for Contao 4.13 and 5.x.
55

66
[![Author](http://img.shields.io/badge/[email protected]?style=flat-square)](https://twitter.com/1upgmbh)
77
[![Software License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
88
[![Total Downloads](http://img.shields.io/packagist/dt/oneup/contao-sentry-bundle.svg?style=flat-square)](https://packagist.org/packages/oneup/contao-sentry-bundle)
99

1010
--
1111

12-
In the first place, this is an "wrapper extension" for the [`sentry/sentry-symfony` bundle][1]. Therefore, you need to
12+
In the first place, this is a "wrapper extension" for the [`sentry/sentry-symfony` bundle][1]. Therefore, you need to
1313
configure this bundle as you would configure the `sentry/sentry-symfony` bundle: [Documentation][2]
1414

1515
### Recommended configuration
@@ -44,7 +44,7 @@ some comments.
4444
4545
In order to integrate this feature, you have to alter the error page template. Place a copy of
4646
`vendor/contao/core-bundle/src/Resources/views/Error/layout.html.twig` in the directory
47-
`app/Resources/ContaoCoreBundle/views/Error/`.
47+
`templates/ContaoCoreBundle/views/Error/`.
4848

4949
Modify the copied template and place the following snippet just before the closing `</body>` tag:
5050
```twig

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.1 || ^8.0",
24-
"contao/core-bundle": "^4.4 || ^5.0",
25-
"sentry/sentry-symfony": "^4.0 || ^5.0",
23+
"php": "^8.1",
24+
"contao/core-bundle": "^4.13 || ^5.0",
25+
"sentry/sentry-symfony": "^5.0",
2626
"twig/twig": "^2.7 || ^3.0"
2727
},
2828
"require-dev": {
@@ -43,11 +43,11 @@
4343
}
4444
},
4545
"extra": {
46-
"contao-manager-plugin": "Oneup\\Contao\\SentryBundle\\ContaoManager\\Plugin"
46+
"contao-manager-plugin": "Oneup\\ContaoSentryBundle\\ContaoManager\\Plugin"
4747
},
4848
"autoload": {
4949
"psr-4": {
50-
"Oneup\\Contao\\SentryBundle\\": "src"
50+
"Oneup\\ContaoSentryBundle\\": "src"
5151
}
5252
},
5353
"support": {
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
services:
2-
Oneup\Contao\SentryBundle\Twig\ContaoSentryTwigExtension:
2+
Oneup\ContaoSentryBundle\Twig\ContaoSentryTwigExtension:
33
tags:
44
- { name: twig.extension }
55

6-
Oneup\Contao\SentryBundle\Twig\ContaoSentryTwigRuntime:
6+
Oneup\ContaoSentryBundle\Twig\ContaoSentryTwigRuntime:
77
public: false
88
tags:
99
- { name: twig.runtime }

src/ContaoManager/Plugin.php

+4-15
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,25 @@
22

33
declare(strict_types=1);
44

5-
namespace Oneup\Contao\SentryBundle\ContaoManager;
5+
namespace Oneup\ContaoSentryBundle\ContaoManager;
66

77
use Contao\CoreBundle\ContaoCoreBundle;
88
use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
99
use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
1010
use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
11-
use Contao\ManagerPlugin\Dependency\DependentPluginInterface;
12-
use Oneup\Contao\SentryBundle\OneupContaoSentryBundle;
11+
use Oneup\ContaoSentryBundle\OneupContaoSentryBundle;
1312
use Sentry\SentryBundle\SentryBundle;
1413

15-
class Plugin implements BundlePluginInterface, DependentPluginInterface
14+
class Plugin implements BundlePluginInterface
1615
{
1716
public function getBundles(ParserInterface $parser): array
1817
{
1918
return [
20-
// load SentryBundle (dependency)
21-
BundleConfig::create(SentryBundle::class)->setLoadAfter([ContaoCoreBundle::class]),
22-
23-
// load OneupContaoSentryBundle
19+
BundleConfig::create(SentryBundle::class),
2420
BundleConfig::create(OneupContaoSentryBundle::class)->setLoadAfter([
2521
ContaoCoreBundle::class,
2622
SentryBundle::class,
2723
]),
2824
];
2925
}
30-
31-
public function getPackageDependencies(): array
32-
{
33-
return [
34-
'sentry/sentry-symfony',
35-
];
36-
}
3726
}

src/DependencyInjection/OneupContaoSentryExtension.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Oneup\Contao\SentryBundle\DependencyInjection;
5+
namespace Oneup\ContaoSentryBundle\DependencyInjection;
66

77
use Symfony\Component\Config\FileLocator;
88
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -18,7 +18,7 @@ class OneupContaoSentryExtension extends Extension
1818
*/
1919
public function load(array $configs, ContainerBuilder $container): void
2020
{
21-
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
22-
$loader->load('services.yml');
21+
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../../config'));
22+
$loader->load('services.yaml');
2323
}
2424
}

src/OneupContaoSentryBundle.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
declare(strict_types=1);
44

5-
namespace Oneup\Contao\SentryBundle;
5+
namespace Oneup\ContaoSentryBundle;
66

77
use Symfony\Component\HttpKernel\Bundle\Bundle;
88

99
class OneupContaoSentryBundle extends Bundle
1010
{
11+
public function getPath(): string
12+
{
13+
return \dirname(__DIR__);
14+
}
1115
}

src/Twig/ContaoSentryTwigExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Oneup\Contao\SentryBundle\Twig;
5+
namespace Oneup\ContaoSentryBundle\Twig;
66

77
use Twig\Extension\AbstractExtension;
88
use Twig\TwigFilter;

src/Twig/ContaoSentryTwigRuntime.php

+4-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Oneup\Contao\SentryBundle\Twig;
5+
namespace Oneup\ContaoSentryBundle\Twig;
66

77
use Sentry\SentrySdk;
88

@@ -22,15 +22,9 @@ public function sentryLastEventIdFilter(): ?string
2222
public function sentryDsn(): ?string
2323
{
2424
if ((null !== $client = SentrySdk::getCurrentHub()->getClient())
25-
&& (null !== $dsn = $client->getOptions()->getDsn())) {
26-
27-
return sprintf(
28-
'%s://%s@%s/%s',
29-
$dsn->getScheme(),
30-
$dsn->getPublicKey(),
31-
$dsn->getHost(),
32-
$dsn->getProjectId()
33-
);
25+
&& (null !== $dsn = $client->getOptions()->getDsn())
26+
) {
27+
return (string) $dsn;
3428
}
3529

3630
return null;

0 commit comments

Comments
 (0)