Skip to content

Commit ae0e782

Browse files
authored
dotenv library added (#54)
Signed-off-by: rahul <[email protected]>
1 parent d34781e commit ae0e782

File tree

3 files changed

+127
-121
lines changed

3 files changed

+127
-121
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
"symfony/dependency-injection": "^6.3",
2626
"symfony/config": "^6.3",
2727
"symfony/yaml": "^6.3",
28-
"symfony/process": "^6.3"
28+
"symfony/process": "^6.3",
29+
"symfony/dotenv": "^6.3"
2930
},
3031
"require-dev": {
3132
"phpunit/phpunit": "^10",
3233
"squizlabs/php_codesniffer": "^3.7",
33-
"symfony/dotenv": "^6.3",
3434
"symfony/var-dumper": "^6.3",
3535
"phpstan/phpstan": "^1.10"
3636
},

composer.lock

+119-119
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Integration/FileEncryptCommandTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88

99
class FileEncryptCommandTest extends TestCase
1010
{
11+
public static function tearDownAfterClass(): void
12+
{
13+
parent::tearDownAfterClass();
14+
unlink("dummy.txt");
15+
}
16+
1117
#[Test]
1218
public function fileIsEncryptedProperly(): void
1319
{

0 commit comments

Comments
 (0)