Skip to content

Commit

Permalink
DevKit updates (#6736)
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI authored Jan 4, 2021
1 parent c68ea81 commit 3c7c8a7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,30 @@ labels: bug, unconfirmed

#### Sonata packages

<details><summary>show</summary>
<p>

```
$ composer show --latest 'sonata-project/*'
# Put the result here.
```

</p>
</details>

#### Symfony packages

<details><summary>show</summary>
<p>

```
$ composer show --latest 'symfony/*'
# Put the result here.
```

</p>
</details>

#### PHP version

```
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
composer-options: "--prefer-dist --prefer-stable"

- name: Psalm
run: vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) --shepherd
run: vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) --shepherd --php-version=7.4
1 change: 1 addition & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ It's auto-generated by sonata-project/dev-kit package.
</include>
</coverage>


<php>
<ini name="precision" value="8" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

require_once __DIR__.'/../vendor/autoload.php';

if (file_exists($file = __DIR__.'/custom_boostrap.php')) {
if (file_exists($file = __DIR__.'/custom_bootstrap.php')) {
require_once $file;
}

0 comments on commit 3c7c8a7

Please sign in to comment.