Skip to content

Commit a672b87

Browse files
committed
Update .gitignore and composer.json for environment configuration
1 parent 8ba12b3 commit a672b87

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
export PHPLIST_DATABASE_PASSWORD=${{ env.DB_PASSWORD }}
7474
export PHPLIST_DATABASE_PORT=${{ job.services.mysql.ports['3306'] }}
7575
export PHPLIST_DATABASE_HOST=127.0.0.1
76+
export PHPLIST_DATABASE_PATH=
7677
vendor/bin/phpunit tests/Integration/
7778
continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
7879
- name: Running static analysis

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@
1515
/var/
1616
/vendor/
1717
.phpunit.result.cache
18+
.env
19+
.env.dist

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"require": {
4444
"php": "^8.1",
45-
"phplist/core": "dev-main",
45+
"phplist/core": "dev-env",
4646
"friendsofsymfony/rest-bundle": "*",
4747
"symfony/test-pack": "^1.0",
4848
"symfony/process": "^6.4",
@@ -85,6 +85,7 @@
8585
"PhpList\\Core\\Composer\\ScriptHandler::createGeneralConfiguration",
8686
"PhpList\\Core\\Composer\\ScriptHandler::createBundleConfiguration",
8787
"PhpList\\Core\\Composer\\ScriptHandler::createRoutesConfiguration",
88+
"PhpList\\Core\\Composer\\ScriptHandler::createDotenvConfiguration",
8889
"PhpList\\Core\\Composer\\ScriptHandler::createParametersConfiguration",
8990
"PhpList\\Core\\Composer\\ScriptHandler::clearAllCaches"
9091
],

0 commit comments

Comments
 (0)