File tree 10 files changed +15
-16
lines changed
10 files changed +15
-16
lines changed Original file line number Diff line number Diff line change 1
1
# dot-twigrenderer
2
2
3
- Dotkernel component providing twig extensions and customizations.
3
+ Dotkernel component providing Twig extensions and customizations.
4
4
5
5
> dot-twigrenderer is a wrapper on top of [ mezzio/mezzio-twigrenderer] ( https://github.com/mezzio/mezzio-twigrenderer )
6
6
7
7
## Documentation
8
8
9
- Documentation is available at: https://docs.dotkernel.org/dot-auth-social / .
9
+ Documentation is available at: https://docs.dotkernel.org/dot-twigrenderer / .
10
10
11
11
## Badges
12
12
13
13
![ OSS Lifecycle] ( https://img.shields.io/osslifecycle/dotkernel/dot-twigrenderer )
14
- ![ PHP from Packagist (specify version)] ( https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.5 .0 )
14
+ ![ PHP from Packagist (specify version)] ( https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.6 .0 )
15
15
16
16
[ ![ GitHub issues] ( https://img.shields.io/github/issues/dotkernel/dot-twigrenderer )] ( https://github.com/dotkernel/dot-twigrenderer/issues )
17
17
[ ![ GitHub forks] ( https://img.shields.io/github/forks/dotkernel/dot-twigrenderer )] ( https://github.com/dotkernel/dot-twigrenderer/network )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dotkernel/dot-twigrenderer" ,
3
3
"type" : " library" ,
4
- "description" : " Dotkernel component providing twig extensions and customization" ,
4
+ "description" : " Dotkernel component providing Twig extensions and customization" ,
5
5
"license" : " MIT" ,
6
- "keywords" : [
6
+ "keywords" : [
7
7
" twig" ,
8
8
" laminas" ,
9
9
" mezzio" ,
27
27
"dotkernel/dot-authorization" : " ^3.4.1"
28
28
},
29
29
"require-dev" : {
30
- "laminas/laminas-coding-standard" : " ^2.5 " ,
30
+ "laminas/laminas-coding-standard" : " ^3.0 " ,
31
31
"phpstan/phpstan" : " ^2.1" ,
32
32
"phpstan/phpstan-phpunit" : " ^2.0" ,
33
33
"phpunit/phpunit" : " ^10.5.7"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ../../README.md
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ The `local.php.dist` file in [frontend](https://github.com/dotkernel/frontend/bl
6
6
7
7
To apply the translations
8
8
9
- - the twig templates need either ` {% trans 'translateText' %} ` or ` {{ translateText|trans }} `
9
+ - the Twig templates need either ` {% trans 'translateText' %} ` or ` {{ translateText|trans }} `
10
10
- then the js file needs ` translateText("translateText") `
11
11
12
12
** NOTE:**
Original file line number Diff line number Diff line change 1
1
# Overview
2
2
3
- Dotkernel component providing twig extensions and customizations.
3
+ Dotkernel component providing Twig extensions and customizations.
4
4
5
5
> dot-twigrenderer is a wrapper on top of [ mezzio/mezzio-twigrenderer] ( https://github.com/mezzio/mezzio-twigrenderer )
6
6
7
7
## Badges
8
8
9
9
![ OSS Lifecycle] ( https://img.shields.io/osslifecycle/dotkernel/dot-twigrenderer )
10
- ![ PHP from Packagist (specify version)] ( https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.5 .0 )
10
+ ![ PHP from Packagist (specify version)] ( https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.6 .0 )
11
11
12
12
[ ![ GitHub issues] ( https://img.shields.io/github/issues/dotkernel/dot-twigrenderer )] ( https://github.com/dotkernel/dot-twigrenderer/issues )
13
13
[ ![ GitHub forks] ( https://img.shields.io/github/forks/dotkernel/dot-twigrenderer )] ( https://github.com/dotkernel/dot-twigrenderer/network )
Original file line number Diff line number Diff line change 25
25
- " Navigation Extension " : v3/examples/example-navigation-ext.md
26
26
- " Translation Extension " : v3/examples/example-translation-ext.md
27
27
site_name : dot-twigrenderer
28
- site_description : " Dotkernel component providing twig extensions and customizations"
28
+ site_description : " Dotkernel component providing Twig extensions and customizations"
29
29
repo_url : " https://github.com/dotkernel/dot-twigrenderer"
30
30
plugins :
31
31
- search
Original file line number Diff line number Diff line change 14
14
use Psr \Container \ContainerInterface ;
15
15
use Psr \Container \NotFoundExceptionInterface ;
16
16
17
- use function PHPUnit \Framework \assertSame ;
18
17
use function sprintf ;
19
18
20
19
class AuthenticationExtensionFactoryTest extends TestCase
@@ -63,6 +62,6 @@ public function testWillInstantiateWithInterface(): void
63
62
64
63
$ factory = (new AuthenticationExtensionFactory ())($ this ->container );
65
64
66
- assertSame (AuthenticationExtension::class, $ factory ::class);
65
+ $ this -> assertSame (AuthenticationExtension::class, $ factory ::class);
67
66
}
68
67
}
Original file line number Diff line number Diff line change @@ -62,6 +62,6 @@ public function testWillInstantiateWithInterface(): void
62
62
63
63
$ factory = (new AuthorizationExtensionFactory ())($ this ->container );
64
64
65
- self :: assertSame (AuthorizationExtension::class, $ factory ::class);
65
+ $ this -> assertSame (AuthorizationExtension::class, $ factory ::class);
66
66
}
67
67
}
Original file line number Diff line number Diff line change @@ -63,6 +63,6 @@ public function testWillInstantiateWithInterface(): void
63
63
64
64
$ factory = (new FlashMessengerExtensionFactory ())($ this ->container );
65
65
66
- self :: assertSame (FlashMessengerExtension::class, $ factory ::class);
66
+ $ this -> assertSame (FlashMessengerExtension::class, $ factory ::class);
67
67
}
68
68
}
Original file line number Diff line number Diff line change @@ -63,6 +63,6 @@ public function testWillInstantiateWithInterface(): void
63
63
64
64
$ factory = (new NavigationExtensionFactory ())($ this ->container );
65
65
66
- self :: assertSame (NavigationExtension::class, $ factory ::class);
66
+ $ this -> assertSame (NavigationExtension::class, $ factory ::class);
67
67
}
68
68
}
You can’t perform that action at this time.
0 commit comments