Skip to content

Commit

Permalink
Require mandatory packages (#131)
Browse files Browse the repository at this point in the history
Because they are required to make AutoMapper works, no reason not to put
them.

Will fix a part of #127,
but not everything.
  • Loading branch information
Korbeil committed May 14, 2024
2 parents 30f62a0 + 250fe57 commit ea02c31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixes
- [GH#131](https://github.com/jolicode/automapper/pull/131) Require mandatory packages

## [9.0.1] - 2024-05-10
### Fixes
- [GH#124](https://github.com/jolicode/automapper/pull/124) Fix Symfony's WebProfiler issues
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
"require": {
"php": "^8.2",
"nikic/php-parser": "^4.18 || ^5.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/property-info": "^6.4 || ^7.0"
"symfony/property-info": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"phpdocumentor/type-resolver": "^1.7"
},
"require-dev": {
"api-platform/core": "^3.0.4",
"doctrine/annotations": "~1.0",
"doctrine/inflector": "^2.0",
"moneyphp/money": "^3.3.2",
"phpdocumentor/type-resolver": "^1.7",
"phpunit/phpunit": "^9.0",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/framework-bundle": "*",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/serializer": "*",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
Expand Down

0 comments on commit ea02c31

Please sign in to comment.