Skip to content

Commit ffa4ae1

Browse files
committed
ci: add missing ext
1 parent 88091af commit ffa4ae1

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

.github/workflows/security-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: shivammathur/[email protected]
3535
with:
3636
php-version: ${{ matrix.php-version }}
37-
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo
37+
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, ext-pdo_mysql
3838
ini-values: error_reporting=E_ALL
3939
coverage: none
4040

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: shivammathur/[email protected]
4545
with:
4646
php-version: ${{ matrix.php-version }}
47-
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo
47+
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, ext-pdo_mysql
4848
ini-values: error_reporting=E_ALL
4949
coverage: none
5050

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@
6363
},
6464
"require-dev": {
6565
"ext-curl": "*",
66+
"ext-pdo_mysql": "*",
67+
"ext-pdo_pgsql": "*",
68+
"ext-pdo_sqlite": "*",
6669
"beberlei/assert": "^3.3",
6770
"ergebnis/composer-normalize": "^2.42",
6871
"fakerphp/faker": "^1.23",
@@ -85,6 +88,9 @@
8588
"wayofdev/cs-fixer-config": "^1.2"
8689
},
8790
"suggest": {
91+
"ext-pdo_mysql": "Required for MySQL database support",
92+
"ext-pdo_pgsql": "Required for PostgreSQL database support",
93+
"ext-pdo_sqlite": "Required for SQLite database support",
8894
"cycle/active-record": "Provides a simple way to work with your database using Active Record pattern and Cycle ORM",
8995
"wayofdev/cs-fixer-config": "A set of PHP-CS-Fixer rules for Laravel projects",
9096
"wayofdev/laravel-cycle-orm-factories": "Cycle-ORM Entity Factories and Database Seeders for Laravel",

composer.lock

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)