Skip to content

Commit 3ea6f50

Browse files
authored
Remove obsolete dependencies (#405)
1 parent 9f0d817 commit 3ea6f50

File tree

2 files changed

+2
-24
lines changed

2 files changed

+2
-24
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,6 @@ jobs:
2828
- "8.0"
2929
- "8.1"
3030

31-
services:
32-
mongodb:
33-
image: "mongo:4.4"
34-
ports:
35-
- "27017:27017"
36-
redis:
37-
image: "redis:6.0.9"
38-
ports:
39-
- "6379:6379"
40-
memcached:
41-
image: "memcached:1.6.9"
42-
ports:
43-
- "11211:11211"
44-
4531
steps:
4632
- name: "Checkout"
4733
uses: "actions/checkout@v2"
@@ -54,17 +40,15 @@ jobs:
5440
with:
5541
php-version: "${{ matrix.php-version }}"
5642
coverage: "xdebug"
57-
extensions: "apcu, mongodb-4.4, memcached"
58-
ini-values: "zend.assertions=1, apc.enable_cli=1"
43+
ini-values: "zend.assertions=1"
5944

6045
- name: "Install PHP with PCOV"
6146
uses: "shivammathur/setup-php@v2"
6247
if: "${{ matrix.php-version != '7.1' }}"
6348
with:
6449
php-version: "${{ matrix.php-version }}"
6550
coverage: "pcov"
66-
extensions: "apcu, mongodb-4.4, memcached"
67-
ini-values: "zend.assertions=1, apc.enable_cli=1"
51+
ini-values: "zend.assertions=1"
6852

6953
- name: "Install dependencies with Composer"
7054
uses: "ramsey/composer-install@v1"

composer.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,13 @@
2626
"php": "~7.1 || ^8.0"
2727
},
2828
"require-dev": {
29-
"alcaeus/mongo-php-adapter": "^1.1",
30-
"mongodb/mongodb": "^1.1",
3129
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
32-
"predis/predis": "~1.0",
3330
"doctrine/coding-standard": "^9",
3431
"psr/cache": "^1.0 || ^2.0 || ^3.0",
3532
"cache/integration-tests": "dev-master",
3633
"symfony/cache": "^4.4 || ^5.4 || ^6",
3734
"symfony/var-exporter": "^4.4 || ^5.4 || ^6"
3835
},
39-
"suggest": {
40-
"alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
41-
},
4236
"conflict": {
4337
"doctrine/common": ">2.2,<2.4"
4438
},

0 commit comments

Comments
 (0)