Skip to content

Commit

Permalink
Merge pull request #4 from acalvino4/tests
Browse files Browse the repository at this point in the history
Tests
  • Loading branch information
acalvino4 authored May 4, 2023
2 parents b1b2904 + 27bc3b5 commit 6508927
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 41 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

## Unreleased

## [1.0.1] - 2023-05-04

- Fix and standardize file formatting and contents

## [1.0.0] - 2023-05-02

- add tests
- add ecs and phpstan checks for test directory
- add github actions workflow to run tests and generate code coverage
- Add tests
- Add ecs and phpstan checks for test directory
- Add github actions workflow to run tests and generate code coverage

## [0.1.1] - 2023-04-27

Expand All @@ -17,6 +21,7 @@

- Add twig extension that allows parsing of an implicit default block from embed contents

[1.0.1]: (https://github.com/acalvino4/twig-embed-implicit-default/releases/tag/1.0.1)
[1.0.0]: (https://github.com/acalvino4/twig-embed-implicit-default/releases/tag/1.0.0)
[0.1.1]: (https://github.com/acalvino4/twig-embed-implicit-default/releases/tag/0.1.1)
[0.1.0]: (https://github.com/acalvino4/twig-embed-implicit-default/releases/tag/0.1.0)
76 changes: 38 additions & 38 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"name": "acalvino4/twig-embed-implicit-default",
"description": "Extends the twig embed tag to allow an implicit default block",
"version": "1.0.0",
"homepage": "https://github.com/acalvino4/twig-embed-with-default-block",
"license": "mit",
"authors": [
{
"name": "Augustine Calvino",
"homepage": "https://github.com/acalvino4"
}
],
"require": {
"php": ">=8.0.2",
"twig/twig": "^3.3"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"acalvino4\\embed\\": "src/",
"acalvino4\\embed\\test\\": "tests/"
}
},
"scripts": {
"test": "ecs check --ansi && phpstan --memory-limit=1G && phpunit",
"fix": "ecs check --ansi --fix"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
}
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "acalvino4/twig-embed-implicit-default",
"description": "Extends the twig embed tag to allow an implicit default block",
"version": "1.0.1",
"homepage": "https://github.com/acalvino4/twig-embed-with-default-block",
"license": "mit",
"authors": [
{
"name": "Augustine Calvino",
"homepage": "https://github.com/acalvino4"
}
],
"require": {
"php": ">=8.0.2",
"twig/twig": "^3.3"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"acalvino4\\embed\\": "src/",
"acalvino4\\embed\\test\\": "tests/"
}
},
"scripts": {
"test": "ecs check --ansi && phpstan --memory-limit=1G && phpunit",
"fix": "ecs check --ansi --fix"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 6508927

Please sign in to comment.