Skip to content

Commit dbdd811

Browse files
authored
Merge pull request #35 from MacPaw/feat/addValidateComposer
Feat/add validate composer
2 parents b4035a0 + 6edce2d commit dbdd811

File tree

5 files changed

+374
-363
lines changed

5 files changed

+374
-363
lines changed

.github/workflows/static-analysis.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,19 @@ jobs:
3737

3838
- name: Run script
3939
run: vendor/bin/phpstan analyse
40+
41+
composer-validate:
42+
name: Composer validate
43+
runs-on: ubuntu-latest
44+
steps:
45+
- name: Checkout
46+
uses: actions/checkout@v2
47+
48+
- name: Setup PHP
49+
uses: shivammathur/setup-php@v2
50+
51+
- name: Install dependencies
52+
run: composer install --no-progress --no-interaction --prefer-dist
53+
54+
- name: Run script
55+
run: composer composer-validate

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
33
All notable changes to this project will be documented in this file. See
44
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.6.0](https://github.com/MacPaw/symfony-health-check-bundle/compare/v0.5.0...v0.6.0) (2021-11-30)
7+
8+
9+
### Features
10+
11+
* add support symfony 60 ([ee3cd32](https://github.com/MacPaw/symfony-health-check-bundle/commit/ee3cd32058b48336f14bd9cdb50945913c00e582))
12+
13+
## [0.5.0](https://github.com/MacPaw/symfony-health-check-bundle/compare/v0.4.0...v0.5.0) (2021-11-30)
14+
15+
16+
### Features
17+
18+
* add support sumfony 54 ([d98d4d4](https://github.com/MacPaw/symfony-health-check-bundle/commit/d98d4d4d8e1e36dc50c212032f4fcec88f7c2fb1))
19+
* add support sumfony 60 ([76c9a55](https://github.com/MacPaw/symfony-health-check-bundle/commit/76c9a55c924de69507c443b04900d6b5f02c6440))
20+
* add support sumfony 60 ([73a51da](https://github.com/MacPaw/symfony-health-check-bundle/commit/73a51da0f880eae8780b14e4cc0933a1f493ddfd))
21+
22+
## [0.4.0](https://github.com/MacPaw/symfony-health-check-bundle/compare/v0.3.0...v0.4.0) (2021-11-30)
23+
24+
25+
### Features
26+
27+
* change token for release ([7c63d6f](https://github.com/MacPaw/symfony-health-check-bundle/commit/7c63d6f442cd1a907b456d43795691510373aef3))
28+
* deprecation message autowiring alias ContainerInterface ([a110918](https://github.com/MacPaw/symfony-health-check-bundle/commit/a110918387cfec9c9e555ceff26941ceb70135fb))
29+
30+
31+
### Bug Fixes
32+
33+
* remove test after change load service in collection ([d5bfc28](https://github.com/MacPaw/symfony-health-check-bundle/commit/d5bfc282ebc049b510ad90ed6ef882195096ee74))
34+
35+
## [0.3.0](https://github.com/MacPaw/symfony-health-check-bundle/compare/v0.2.0...v0.3.0) (2021-11-29)
36+
37+
38+
### Features
39+
40+
* add support php 8.1 ([501151b](https://github.com/MacPaw/symfony-health-check-bundle/commit/501151b26e301330914b5cf4d7cb0c00dcfe61f9))
41+
* change version php in log code coverage ([7029a5d](https://github.com/MacPaw/symfony-health-check-bundle/commit/7029a5d0ea8963fa7a141d7de1c60d3a9a5fcb7e))
42+
* create contribution doc ([e70aa78](https://github.com/MacPaw/symfony-health-check-bundle/commit/e70aa78284a2aef5f94edebe06c93c3bf0e24f4f))
43+
44+
45+
### Bug Fixes
46+
47+
* add security policy ([0974e2b](https://github.com/MacPaw/symfony-health-check-bundle/commit/0974e2b4da8b13d628012ad9ffe1d406252797e9))
48+
* install symfony version in ci build ([2c090c1](https://github.com/MacPaw/symfony-health-check-bundle/commit/2c090c1833c914a5060d92ecfb0a50b9b764ffac))
49+
* install symfony version in ci build ([bbc1806](https://github.com/MacPaw/symfony-health-check-bundle/commit/bbc180643fa736e5e361f5cd71641ed26e3b2315))
50+
* install symfony version in ci build ([9caa19d](https://github.com/MacPaw/symfony-health-check-bundle/commit/9caa19d8a930a3bb174eee1d72430f634a656e67))
51+
652
## [0.2.0](https://github.com/MacPaw/symfony-health-check-bundle/compare/v0.1.1...v0.2.0) (2021-07-24)
753

854

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
}
5353
},
5454
"scripts": {
55+
"composer-validate": [
56+
"composer validate"
57+
],
5558
"cs": [
5659
"vendor/bin/phpcs"
5760
],

0 commit comments

Comments
 (0)