Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- 'main'
- '[0-9].[0-9]'
tags:
- '**'
pull_request:

concurrency:
Expand All @@ -20,7 +22,7 @@ jobs:
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.3.x-dev'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.4.x-dev'
- uses: 'ramsey/composer-install@v3'
- run: 'vendor/bin/php-cs-fixer fix --diff --dry-run --show-progress=none --ansi'

Expand All @@ -32,7 +34,7 @@ jobs:
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.3.x-dev'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.4.x-dev'
- uses: 'ramsey/composer-install@v3'
- run: 'vendor/bin/phpstan analyze --no-progress --ansi'

Expand All @@ -44,7 +46,7 @@ jobs:
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.3.x-dev'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.4.x-dev'
- uses: 'ramsey/composer-install@v3'
- run: 'vendor/bin/rector process --dry-run --no-progress-bar --ansi'

Expand All @@ -56,7 +58,7 @@ jobs:
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.3.x-dev'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.4.x-dev'
- uses: 'ramsey/composer-install@v3'
- run: 'vendor/bin/composer-require-checker --ansi'

Expand All @@ -82,5 +84,5 @@ jobs:
- uses: 'shivammathur/setup-php@v2'
with:
php-version: "${{ matrix.php }}"
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.3.x-dev'
- run: 'composer require --no-install darkwebdesign/symfony-addon-pack:7.4.x-dev'
- uses: 'ramsey/composer-install@v3'
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
[![Total Downloads](https://poser.pugx.org/darkwebdesign/symfony-addon-bundle/downloads?format=flat)](https://packagist.org/packages/darkwebdesign/symfony-addon-bundle)
[![License](https://poser.pugx.org/darkwebdesign/symfony-addon-bundle/license?format=flat)](https://packagist.org/packages/darkwebdesign/symfony-addon-bundle)

[![Build Status](https://github.com/darkwebdesign/symfony-addon-bundle/actions/workflows/build.yaml/badge.svg?branch=7.3)](https://github.com/darkwebdesign/symfony-addon-bundle/actions/workflows/build.yaml)
[![Build Status](https://github.com/darkwebdesign/symfony-addon-bundle/actions/workflows/build.yaml/badge.svg?branch=7.4)](https://github.com/darkwebdesign/symfony-addon-bundle/actions/workflows/build.yaml)
[![PHP Version](https://img.shields.io/badge/php-8.2%2B-777BB3.svg)](https://php.net/)
[![Symfony Version](https://img.shields.io/badge/symfony-7.3-93C74B.svg)](https://symfony.com/)
[![Symfony Version](https://img.shields.io/badge/symfony-7.4-93C74B.svg)](https://symfony.com/)

Symfony Add-on Bundle conveniently wraps the [Symfony Add-on Pack](https://github.com/darkwebdesign/symfony-addon-pack) with a Symfony Bundle that you can use
in your Symfony applications.

Learn more about it in its [documentation](https://darkwebdesign.github.io/symfony-addon-bundle/docs/7.3).
Learn more about it in its [documentation](https://darkwebdesign.github.io/symfony-addon-bundle/docs/7.4).

## License

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
],
"require": {
"php": "^8.2",
"darkwebdesign/symfony-addon-pack": "7.3.*-dev",
"darkwebdesign/symfony-addon-pack": "7.4.*-dev",
"doctrine/doctrine-bundle": "*",
"symfony/config": "7.3.*",
"symfony/dependency-injection": "7.3.*",
"symfony/http-kernel": "7.3.*"
"symfony/config": "7.4.*",
"symfony/dependency-injection": "7.4.*",
"symfony/http-kernel": "7.4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.93",
Expand Down