Skip to content

Commit 8b7e15a

Browse files
authored
Prepare for 1.0 release
1 parent d8dbf59 commit 8b7e15a

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# CHANGELOG
22

3-
## [Unreleased]
3+
## [1.0.0] - 2025-11-08
4+
5+
### Added
6+
- Initial stable release of Playwright PHP
7+
- Cross-browser support (Chromium, Firefox, WebKit)
8+
- PHPUnit integration with fluent assertions
9+
- Auto-waiting locators and interactions
10+
- Screenshot and tracing capabilities
11+
- Storage state management
12+
13+
### Changed
14+
- Marked package as stable (removed experimental warning)
15+
- Added PHPUnit 10+ requirement documentation for testing trait
16+
417

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@
1010

1111
# Playwright PHP - Modern Browser Automation
1212

13-
> [!IMPORTANT]
14-
> This package is **experimental**. Its API may still change before the upcoming `1.0` release.
15-
>
16-
> Curious or interested? Try it out, [share your feedback](https://github.com/playwright-php/playwright/issues), or ideas!
17-
18-
19-
2013
## About
2114

2215
Playwright for PHP lets you launch real browsers (Chromium, Firefox, WebKit), drive pages and locators, and write reliable end‑to‑end tests — all from PHP.
@@ -136,6 +129,8 @@ $ctx = Playwright::chromium([
136129

137130
The package provides a testing trait and fluent `expect()` assertions to write robust E2E tests.
138131

132+
**Requirements**: PHPUnit 10.0 or higher is required to use the `PlaywrightTestCaseTrait`.
133+
139134
Minimal example:
140135

141136
```php

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
"extra": {
6868
"branch-alias": {
69-
"dev-main": "0.x-dev"
69+
"dev-main": "1.x-dev"
7070
}
7171
},
7272
"bin": [

0 commit comments

Comments
 (0)