Skip to content

Commit 273a6b1

Browse files
author
Jonathon Hill
committed
feat: drop Swoole support
1 parent 3d43518 commit 273a6b1

File tree

4 files changed

+2
-74
lines changed

4 files changed

+2
-74
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@ test: lint test-behavior
99

1010
start-php:
1111
php -S localhost:8080 -t tests/integration/server 2> /dev/null
12-
13-
start-swoole:
14-
php tests/integration/server/swoole.php

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ replacement for it. This library differs from the PHP session library in the fol
1616
* Session data is accessed using a Session object, not via $_SESSION
1717

1818
This library is ideal for single-process event loop-driven applications, using servers like
19-
[Swoole](https://www.swoole.co.uk) or [ReactPHP](https://reactphp.org).
19+
[ReactPHP](https://reactphp.org).
2020

2121
## Supported Features
2222

@@ -41,10 +41,6 @@ To run with PHP Development Server:
4141

4242
$ composer run-script start-php
4343

44-
To run with [Swoole](https://www.swoole.co.uk/docs/get-started/installation):
45-
46-
$ composer run-script start-swoole
47-
4844
### Basic Usage
4945

5046
```php

composer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"name": "compwright/php-session",
3-
"description": "Standalone session implementation that does not rely on the PHP session module or the $_SESSION global, ideal for Swoole or ReactPHP applications",
3+
"description": "Standalone session implementation that does not rely on the PHP session module or the $_SESSION global, ideal for ReactPHP applications",
44
"type": "library",
55
"keywords": [
66
"standalone",
77
"session",
88
"middleware",
9-
"swoole",
109
"reactphp",
1110
"psr7",
1211
"psr15",
@@ -34,7 +33,6 @@
3433
],
3534
"license": "MIT",
3635
"suggest": {
37-
"ext-swoole": "Swoole extension for PHP",
3836
"ext-redis": "Redis extension for PHP",
3937
"matthiasmullie/scrapbook": "Scrapbook Cache provides excellent session storage options"
4038
},
@@ -49,7 +47,6 @@
4947
"require-dev": {
5048
"behat/behat": "^3.8",
5149
"bramus/monolog-colored-line-formatter": "^3.0",
52-
"compwright/swoole-psr7-compat": "^2.0",
5350
"friendsofphp/php-cs-fixer": "^3.11",
5451
"kodus/file-cache": "^2",
5552
"league/flysystem": "^3.12",

tests/integration/server/swoole.php

Lines changed: 0 additions & 62 deletions
This file was deleted.

0 commit comments

Comments
 (0)