Skip to content

Commit

Permalink
ISSUE-337: changelog + test
Browse files Browse the repository at this point in the history
  • Loading branch information
tatevikg1 committed Dec 16, 2024
1 parent bb9d7d7 commit 3a6903d
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 186 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -u${{ env.DB_USERNAME }} -p${{ env.DB_PASSWORD }} -e "SHOW DATABASES"
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_ENV
- name: Cache composer dependencies
uses: actions/cache@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Fixed
- Security update for symfony/symfony and symfony/dependency-injection (#86)


## 5.0.0-alpha1

### Changed
- php version 8.1

## 4.0.0-alpha2

### Added
Expand Down
28 changes: 3 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,6 @@
"role": "Former developer"
}
],
"repositories": [
{
"type": "path",
"url": "../core",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../rest-api",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../web-frontend",
"options": {
"symlink": true
}
}
],
"support": {
"issues": "https://github.com/phpList/base-distribution/issues",
"forum": "https://discuss.phplist.org/",
Expand All @@ -54,7 +31,8 @@
"php": "^8.1",
"phplist/core": "dev-ISSUE-337",
"phplist/rest-api": "dev-ISSUE-337",
"phplist/web-frontend": "dev-ISSUE-337"
"phplist/web-frontend": "dev-ISSUE-337",
"doctrine/orm": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
Expand Down Expand Up @@ -109,7 +87,7 @@
},
"extra": {
"branch-alias": {
"dev-ISSUE-337": "v5.0.x-dev"
"dev-ISSUE-337": "5.0.x-dev"
},
"symfony-app-dir": "bin",
"symfony-bin-dir": "bin",
Expand Down
Loading

0 comments on commit 3a6903d

Please sign in to comment.