Skip to content

Commit

Permalink
fix test namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat committed Jul 15, 2023
1 parent 29171d1 commit f5c5025
Show file tree
Hide file tree
Showing 15 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Vagrantfile
php-cgi.core
.sass-cache

# codeception (only stage *.dist.yml config files)
/codeception.yml
/tests/codeception.yml
/tests/*.suite.yml
# codeception (only stage *.dist.yaml config files)
/codeception.yaml
/tests/codeception.yaml
/tests/*.suite.yaml
/tests/_output/*
/tests/_data/*
!/tests/_data/.gitkeep
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ The Toolbox is a Kickstarter for your every day project. It provides some import
[![Join the chat at https://gitter.im/pimcore/pimcore](https://img.shields.io/gitter/room/pimcore/pimcore.svg?style=flat-square)](https://gitter.im/pimcore/pimcore)
[![Software License](https://img.shields.io/badge/license-GPLv3-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Latest Release](https://img.shields.io/packagist/v/dachcom-digital/toolbox.svg?style=flat-square)](https://packagist.org/packages/dachcom-digital/toolbox)
[![Tests](https://img.shields.io/github/actions/workflow/status/dachcom-digital/pimcore-toolbox/.github/workflows/codeception.yml?branch=master&style=flat-square&logo=github&label=codeception)](https://github.com/dachcom-digital/pimcore-toolbox/actions?query=workflow%3ACodeception+branch%3Amaster)
[![PhpStan](https://img.shields.io/github/actions/workflow/status/dachcom-digital/pimcore-toolbox/.github/workflows/php-stan.yml?branch=master&style=flat-square&logo=github&label=phpstan%20level%204)](https://github.com/dachcom-digital/pimcore-toolbox/actions?query=workflow%3A"PHP+Stan"+branch%3Amaster)
[![Tests](https://img.shields.io/github/actions/workflow/status/dachcom-digital/pimcore-toolbox/.github/workflows/codeception.yaml?branch=master&style=flat-square&logo=github&label=codeception)](https://github.com/dachcom-digital/pimcore-toolbox/actions?query=workflow%3ACodeception+branch%3Amaster)
[![PhpStan](https://img.shields.io/github/actions/workflow/status/dachcom-digital/pimcore-toolbox/.github/workflows/php-stan.yaml?branch=master&style=flat-square&logo=github&label=phpstan%20level%204)](https://github.com/dachcom-digital/pimcore-toolbox/actions?query=workflow%3A"PHP+Stan"+branch%3Amaster)

![Pimcore Toolbox](https://user-images.githubusercontent.com/700119/135613598-a9ef2c69-9a44-41cd-8542-596a0322d3da.png)

Expand Down
4 changes: 2 additions & 2 deletions docs/10_CustomBricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you just want to create a simple brick, create a [simple brick](./10_CustomBr

There are three simple steps to create a custom brick:

1. Add this configuration to `/config/packages/toolbox.yml`:
1. Add this configuration to `/config/packages/toolbox.yaml`:

```yaml
services:
Expand Down Expand Up @@ -109,7 +109,7 @@ That's it. If you want to refresh the permission table you also need to execute

Two steps to create a simple brick:

1. Add this configuration to `/config/packages/toolbox.yml`:
1. Add this configuration to `/config/packages/toolbox.yaml`:

```yaml
services:
Expand Down
2 changes: 1 addition & 1 deletion docs/14_ImageThumbnails.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Image Thumbnails

To stay organized, the ToolboxBundle provides a dedicated configuration and a simple helper for image thumbnails.
Every required thumbnail size is defined in the [toolbox configuration](https://github.com/dachcom-digital/pimcore-toolbox/blob/master/src/ToolboxBundle/Resources/config/pimcore/image_thumbnails.yml).
Every required thumbnail size is defined in the [toolbox configuration](https://github.com/dachcom-digital/pimcore-toolbox/blob/master/src/ToolboxBundle/Resources/config/pimcore/image_thumbnails.yaml).
So it's easy for you to simplify or change the [Image Thumbnail](https://www.pimcore.org/docs/5.0.0/Assets/Working_with_Thumbnails/Image_Thumbnails.html) reference.

Although this is just an optional feature, it makes sense to use the view helper in your project and custom bricks.
Expand Down
2 changes: 1 addition & 1 deletion docs/16_EditableStoreProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ toolbox:
Now we need to register our new service:

```yml
# app/config.yml
# app/config.yaml
services:
App\Toolbox\MyStoreProvider:
tags:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ error_level: '%PIMCORE_PHP_ERROR_REPORTING%'
modules:
enabled:
- \Dachcom\Codeception\Support\Helper\PimcoreCore:
configuration_file: 'config_context.yml'
configuration_file: 'config_context.yaml'
connect_db: true
- \Dachcom\Codeception\Support\Helper\PimcoreBundleCore:
run_installer: true
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ error_level: '%PIMCORE_PHP_ERROR_REPORTING%'
modules:
enabled:
- \Dachcom\Codeception\Support\Helper\PimcoreCore:
configuration_file: 'config_theme.yml'
configuration_file: 'config_theme.yaml'
connect_db: true
- \Dachcom\Codeception\Support\Helper\PimcoreBundleCore:
run_installer: true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f5c5025

Please sign in to comment.