You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,16 @@ jobs:
16
16
fail-fast: false
17
17
matrix:
18
18
php: ['8.2', '8.3', '8.4', '8.5']
19
-
symfony: ['7.0', '8.0']
19
+
symfony: ['7.0', '7.4', '8.0', '8.1']
20
20
exclude:
21
21
- php: '8.2'
22
22
symfony: '8.0'
23
+
- php: '8.2'
24
+
symfony: '8.1'
23
25
- php: '8.3'
24
26
symfony: '8.0'
27
+
- php: '8.3'
28
+
symfony: '8.1'
25
29
26
30
steps:
27
31
- name: Checkout code
@@ -53,9 +57,11 @@ jobs:
53
57
- name: Install dependencies with Symfony ${{ matrix.symfony }}
54
58
run: |
55
59
# Symfony 8 requires PHP >=8.4; composer.json pins platform to 8.2.x for lock/PHP 8.2 jobs — override platform for Symfony 8 cells so resolution sees PHP >=8.4 (unset alone can still leave Composer on 8.2.x in some setups).
> **Found this useful?**[Install from Packagist](https://packagist.org/packages/nowo-tech/ckeditor5-editor-bundle) · Star the repo on [GitHub](https://github.com/nowo-tech/Ckeditor5EditorBundle).
6
6
@@ -15,7 +15,16 @@ Symfony bundle: **`Ckeditor5EditorType`** stores HTML in a textarea while **CKEd
15
15
-`nowo_ckeditor5_editor_asset_path()` Twig helper for published assets.
16
16
-**pnpm + Vite** frontend; **Vitest** coverage on shared utilities (`logger.ts`).
17
17
-**Dockerfile + Makefile** aligned with other Nowo bundles.
18
-
-**Demos**: Symfony 7 & 8 under `demo/` (FrankenPHP).
18
+
-**Demos**: Symfony **7.4** and **8.1** FrankenPHP apps under `demo/` (ports **8020** / **8021**).
19
+
20
+
## Requirements
21
+
22
+
| Symfony | PHP (minimum) | Notes |
23
+
| ------- | ------------- | ----- |
24
+
|**6.4**, **7.x** (incl. **7.4**) |**8.2+**| Tested in CI on **7.0** and **7.4**|
25
+
|**8.0**, **8.1**|**8.4+**| Symfony 8 requirement; tested in CI on **8.0** and **8.1**|
26
+
27
+
Composer constraints: `^6.4 \|\| ^7.0 \|\| ^8.0` on Symfony components. See [INSTALLATION.md](docs/INSTALLATION.md).
|**PHP**|**100%** statement coverage on bundle `src/` (PHPUnit + Clover); enforced by `scripts/verify-clover-100.php`. Run `composer test-coverage` or `make test-coverage`. |
95
105
|**TypeScript**| Vitest thresholds on `src/Resources/assets/src/logger.ts` (see `vitest.config.ts`). Run `pnpm run test:coverage` or `make test-ts`. |
96
106
97
-
CI runs PHPUnit (matrix PHP × Symfony), PHPStan, PHP-CS-Fixer dry-run, and Vitest coverage on pushes and pull requests.
107
+
CI runs PHPUnit (matrix **PHP 8.2–8.5** × **Symfony 7.0 / 7.4 / 8.0 / 8.1**), PHPStan, PHP-CS-Fixer dry-run, and Vitest coverage on pushes and pull requests.
0 commit comments