Skip to content

Commit 789315a

Browse files
TatevikGrxh3n1Oliver Kleemichieldtatevikg1
authored
Update to php8.1 symfony 6.4 (#141)
* change branch name Signed-off-by: Xheni Myrtaj <[email protected]> * Disable REST API by default Signed-off-by: Xheni Myrtaj <[email protected]> * Change path Signed-off-by: Xheni Myrtaj <[email protected]> * Remove prefix Signed-off-by: Xheni Myrtaj <[email protected]> * [FEATURE] Get the number of subscribers of list and added tests (#116) Closes #115 * [BUGFIX] Fix the expected number in an integration test (#119) Signed-off-by: Xheni Myrtaj <[email protected]> * [CLEANUP] Fix a warning with newer PHPMD versions (#125) * update php dependencies * update to pass building * ISSUE-337: update package versions * ISSUE-337: use local * ISSUE-337: symfony 6.4 * ISSUE-337: test fix * ISSUE-337: fix the rest of tests * GitHub actions (#132) * added github workflow(action) for build and test ci tasks Signed-off-by: fenn-cs <[email protected]> * updated php_codesniffer dep Signed-off-by: fenn-cs <[email protected]> * removed travis ci config file Signed-off-by: fenn-cs <[email protected]> (cherry picked from commit 70d45ad) * ISSUE-337: add pipeline * ISSUE-337: fix phpstan * ISSUE-337: fix phpstmd * ISSUE-337: openapi docs * ISSUE-337: move to bundle file * ISSUE-337: changelog * ISSUE-337: update core * ISSUE-337: fix phpstan * ISSUE-337: fix phpcs * ISSUE-337: force push * ISSUE-337: name fix --------- Signed-off-by: Xheni Myrtaj <[email protected]> Co-authored-by: Xheni Myrtaj <[email protected]> Co-authored-by: Oliver Klee <[email protected]> Co-authored-by: Michiel Dethmers <[email protected]> Co-authored-by: Tatevik <[email protected]> Co-authored-by: F. E Noel Nfebe <[email protected]>
1 parent 5307afd commit 789315a

30 files changed

+1451
-1254
lines changed

.github/workflows/ci.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php-versions: ['7.2', '7.3', '7.4', '8.0']
26-
# dependencies: ['latest', 'oldest'] # Only latest/upwards dependencies supported currently.
25+
php-versions: ['8.1']
26+
dependencies: ['latest', 'oldest']
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v2
@@ -48,18 +48,15 @@ jobs:
4848
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4949
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
5050
restore-keys: ${{ runner.os }}-composer-
51-
# - name: Install the lowest dependencies
52-
# run: composer update --with-dependencies --prefer-stable --prefer-dist --prefer-lowest
53-
# if: ${{ matrix.dependencies }} == "latest"
51+
- name: Install dependencies
52+
run: composer update --with-dependencies --prefer-stable --prefer-dist
53+
if: ${{ matrix.dependencies }} == "latest"
5454
- name: Install current dependencies from composer.lock
5555
run: composer install
56-
continue-on-error: ${{matrix.php-versions == '8.0' }} # Temporal until full support for php8 === [temp-php8]
5756
- name: Set up database schema
5857
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -u${{ env.DB_USERNAME }} -p${{ env.DB_PASSWORD }} ${{ env.DB_DATABASE }} < vendor/phplist/core/resources/Database/Schema.sql
59-
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
6058
- name: Validating composer.json
6159
run: composer validate --no-check-all --no-check-lock --strict;
62-
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
6360
- name: Linting all php files
6461
run: find src/ tests/ public/ -name ''*.php'' -print0 | xargs -0 -n 1 -P 4 php -l; php -l;
6562
- name: Running unit tests
@@ -76,10 +73,7 @@ jobs:
7673
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
7774
- name: Running static analysis
7875
run: vendor/bin/phpstan analyse -l 5 src/ tests/;
79-
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
8076
- name: Running PHPMD
8177
run: vendor/bin/phpmd src/ text vendor/phplist/core/config/PHPMD/rules.xml;
82-
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
8378
- name: Running PHP_CodeSniffer
8479
run: vendor/bin/phpcs --standard=vendor/phplist/core/config/PhpCodeSniffer/ src/ tests/;
85-
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]

.github/workflows/restapi-docs.yml

+76-56
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,93 @@
1-
name: Publish REST API Docs
2-
on: [push, pull_request]
1+
name: Publish REST API Docs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
38
jobs:
49
make-restapi-docs:
510
name: Checkout phpList rest-api and generate docs specification (OpenAPI latest-restapi.json)
611
runs-on: ubuntu-20.04
712
steps:
8-
- name: Checkout
9-
uses: actions/checkout@v2
10-
- name: Setup PHP, with composer and extensions
11-
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
13+
- name: Checkout Repository
14+
uses: actions/checkout@v3
15+
16+
- name: Setup PHP with Composer and Extensions
17+
uses: shivammathur/setup-php@v2
1218
with:
13-
php-version: 7.4
19+
php-version: 8.1
1420
extensions: mbstring, dom, fileinfo, mysql
15-
- name: Get composer cache directory
16-
id: composer-cache
17-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
18-
- name: Cache composer dependencies
19-
uses: actions/cache@v2
21+
22+
- name: Cache Composer Dependencies
23+
uses: actions/cache@v3
2024
with:
21-
path: ${{ steps.composer-cache.outputs.dir }}
22-
# Use composer.json for key, if composer.lock is not committed.
23-
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
25+
path: ~/.composer/cache
2426
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
25-
restore-keys: ${{ runner.os }}-composer-
26-
- name: Install current dependencies from composer.lock
27-
run: composer install
28-
- name: Generate OpenAPI Specification JSON for REST API
27+
restore-keys: |
28+
${{ runner.os }}-composer-
29+
30+
- name: Install Composer Dependencies
31+
run: composer install --no-interaction --prefer-dist
32+
33+
- name: Generate OpenAPI Specification JSON
2934
run: vendor/bin/openapi -o docs/latest-restapi.json --format json src
30-
- name: Upload REST API(latest-restapi.json) Spec
31-
uses: actions/upload-artifact@v2
35+
36+
- name: Upload REST API Specification
37+
uses: actions/upload-artifact@v3
3238
with:
3339
name: restapi-json
3440
path: docs/latest-restapi.json
41+
3542
deploy-docs:
36-
name: Deploy REST API specification.
43+
name: Deploy REST API Specification
3744
runs-on: ubuntu-20.04
3845
needs: make-restapi-docs
3946
steps:
40-
- name: Install node
41-
uses: actions/setup-node@v2
42-
with:
43-
node-version: '14'
44-
- name: Install openapi-checker
45-
run: npm install -g openapi-checker
46-
- name: Checkout phplist/restapi-docs
47-
uses: actions/checkout@v2
48-
with:
49-
repository: phpList/restapi-docs
50-
fetch-depth: 0
51-
token: ${{ secrets.PUSH_REST_API_DOCS }}
52-
- name: Restore REST API Spec
53-
uses: actions/download-artifact@v2
54-
with:
55-
name: restapi-json
56-
- name: Validate latest-restapi.json
57-
run: openapi-checker latest-restapi.json
58-
- name: Get difference between latest-restapi.json and restapi.json
59-
# `|| true` to supress exit code 1 [git diff exits with 1 when there is a difference between the two files and 0 for the reverse.
60-
run: git diff --no-index --output=restapi-diff.txt latest-restapi.json restapi.json || true
61-
- name: Verify difference latest-restapi.json and restapi.json
62-
id: allow-deploy
63-
run: |
64-
if [ -s restapi-diff.txt ]; then echo "Updates made to restapi.json deployment proceeding."; echo '::set-output name=DEPLOY::true'; else echo "No updates made to restapi.json deployment would be skipped."; echo '::set-output name=DEPLOY::false'; fi
65-
- name: Commit and changes and deply
66-
if: ${{ steps.allow-deploy.outputs.DEPLOY == 'true' }}
67-
run: |
68-
mv latest-restapi.json restapi.json
69-
git config user.name "github-actions"
70-
git config user.email "[email protected]"
71-
git add restapi.json
72-
git commit -s -m "phplist/rest-api docs deployment `date`"
73-
git push
47+
- name: Setup Node.js
48+
uses: actions/setup-node@v3
49+
with:
50+
node-version: 14
51+
52+
- name: Install openapi-checker
53+
run: npm install -g swagger-cli
54+
55+
- name: Checkout REST API Docs Repository
56+
uses: actions/checkout@v3
57+
with:
58+
repository: phpList/restapi-docs
59+
fetch-depth: 0
60+
token: ${{ secrets.PUSH_REST_API_DOCS }}
61+
62+
- name: Download Generated REST API Specification
63+
uses: actions/download-artifact@v3
64+
with:
65+
name: restapi-json
66+
path: docs
67+
68+
- name: Validate OpenAPI Specification
69+
run: swagger-cli validate docs/latest-restapi.json
70+
71+
- name: Compare Specifications
72+
run: git diff --no-index --output=restapi-diff.txt docs/latest-restapi.json restapi.json || true
73+
74+
- name: Check Differences and Decide Deployment
75+
id: allow-deploy
76+
run: |
77+
if [ -s restapi-diff.txt ]; then
78+
echo "Updates detected in the REST API specification. Proceeding with deployment.";
79+
echo 'DEPLOY=true' >> $GITHUB_ENV;
80+
else
81+
echo "No changes detected in the REST API specification. Skipping deployment.";
82+
echo 'DEPLOY=false' >> $GITHUB_ENV;
83+
fi
84+
85+
- name: Commit and Deploy Updates
86+
if: env.DEPLOY == 'true'
87+
run: |
88+
mv docs/latest-restapi.json docs/restapi.json
89+
git config user.name "github-actions"
90+
git config user.email "[email protected]"
91+
git add docs/restapi.json
92+
git commit -m "Update REST API documentation `date`"
93+
git push

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
/public/
1515
/var/
1616
/vendor/
17+
.phpunit.result.cache

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1919

2020
### Fixed
2121

22+
## 5.0.0-alpha1
23+
24+
### Changed
25+
- php version 8.1
26+
2227
## 4.0.0-alpha2
2328

2429
### Added

composer.json

+16-51
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@
3030
"source": "https://github.com/phpList/rest-api"
3131
},
3232
"require": {
33-
"php": "^7.2|^8.0",
34-
"phplist/core": "^v4.0.0-alpha5",
35-
"friendsofsymfony/rest-bundle": "^2.8.6",
36-
"sensio/framework-extra-bundle": "5.1.0",
37-
"zircote/swagger-php": "^3.1"
33+
"php": "^8.1",
34+
"phplist/core": "dev-ISSUE-337",
35+
"friendsofsymfony/rest-bundle": "*",
36+
"symfony/test-pack": "^1.0",
37+
"symfony/process": "^6.4",
38+
"zircote/swagger-php": "^4.11"
3839
},
3940
"require-dev": {
40-
"phpunit/phpunit": "^6.5.14",
41-
"phpunit/phpunit-mock-objects": "^5.0.6",
42-
"phpunit/dbunit": "^3.0.3",
43-
"guzzlehttp/guzzle": "^6.5.5",
44-
"squizlabs/php_codesniffer": "^3.5.8",
45-
"phpstan/phpstan": "^0.7.0",
46-
"nette/caching": "^3.1.0",
47-
"nikic/php-parser": "^3.1.0",
48-
"phpmd/phpmd": "^2.9.1"
41+
"phpunit/phpunit": "^10.0",
42+
"guzzlehttp/guzzle": "^6.3.0",
43+
"squizlabs/php_codesniffer": "^3.2.0",
44+
"phpstan/phpstan": "^1.10",
45+
"nette/caching": "^3.0.0",
46+
"nikic/php-parser": "^4.19.1",
47+
"phpmd/phpmd": "^2.6.0",
48+
"doctrine/instantiator": "^2.0."
4949
},
5050
"autoload": {
5151
"psr-4": {
@@ -86,7 +86,7 @@
8686
},
8787
"extra": {
8888
"branch-alias": {
89-
"dev-master": "4.0.x-dev"
89+
"dev-ISSUE-337": "5.0.x-dev"
9090
},
9191
"symfony-app-dir": "bin",
9292
"symfony-bin-dir": "bin",
@@ -101,44 +101,9 @@
101101
"routes": {
102102
"rest-api": {
103103
"resource": "@PhpListRestBundle/Controller/",
104-
"type": "rest",
104+
"type": "attribute",
105105
"prefix": "/api/v2"
106106
}
107-
},
108-
"configuration": {
109-
"fos_rest": {
110-
"routing_loader": {
111-
"include_format": false
112-
},
113-
"format_listener": {
114-
"enabled": true,
115-
"rules": [
116-
{
117-
"path": "^/api/v2/",
118-
"fallback_format": "json"
119-
},
120-
{
121-
"path": "^/",
122-
"fallback_format": "html"
123-
}
124-
]
125-
},
126-
"view": {
127-
"view_response_listener": {
128-
"enabled": true
129-
}
130-
131-
},
132-
"exception": {
133-
"enabled": true,
134-
"messages": {
135-
"Symfony\\Component\\HttpKernel\\Exception\\BadRequestHttpException": true
136-
}
137-
},
138-
"service": {
139-
"view_handler": "my.secure_view_handler"
140-
}
141-
}
142107
}
143108
}
144109
}

config/services.yml

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
11
services:
2+
Psr\Container\ContainerInterface:
3+
alias: 'service_container'
4+
25
PhpList\RestBundle\Controller\:
36
resource: '../src/Controller'
47
public: true
58
autowire: true
69
tags: ['controller.service_arguments']
710

11+
# Symfony\Component\Serializer\SerializerInterface:
12+
# autowire: true
13+
# autoconfigure: true
14+
815
my.secure_handler:
9-
class: \PhpList\RestBundle\ViewHandler\SecuredViewHandler
16+
class: \PhpList\RestBundle\ViewHandler\SecuredViewHandler
1017

1118
my.secure_view_handler:
12-
parent: fos_rest.view_handler.default
13-
calls:
14-
- ['registerHandler', [ 'json', ['@my.secure_handler', 'createResponse'] ] ]
19+
parent: fos_rest.view_handler.default
20+
calls:
21+
- ['registerHandler', [ 'json', ['@my.secure_handler', 'createResponse'] ] ]
22+
23+
PhpList\Core\Security\Authentication:
24+
autowire: true
25+
autoconfigure: true
26+
27+
PhpList\Core\Domain\Repository\Messaging\SubscriberListRepository:
28+
autowire: true
29+
autoconfigure: true
30+
31+
PhpList\RestBundle\EventListener\ExceptionListener:
32+
tags:
33+
- { name: kernel.event_listener, event: kernel.exception }
34+
35+
PhpList\RestBundle\EventListener\ResponseListener:
36+
tags:
37+
- { name: kernel.event_listener, event: kernel.response }

0 commit comments

Comments
 (0)