Skip to content

Commit

Permalink
dotenv library added (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: rahul <[email protected]>
  • Loading branch information
rcsofttech85 authored Oct 12, 2023
1 parent d34781e commit ae0e782
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 121 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"symfony/dependency-injection": "^6.3",
"symfony/config": "^6.3",
"symfony/yaml": "^6.3",
"symfony/process": "^6.3"
"symfony/process": "^6.3",
"symfony/dotenv": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.7",
"symfony/dotenv": "^6.3",
"symfony/var-dumper": "^6.3",
"phpstan/phpstan": "^1.10"
},
Expand Down
238 changes: 119 additions & 119 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions tests/Integration/FileEncryptCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

class FileEncryptCommandTest extends TestCase
{
public static function tearDownAfterClass(): void
{
parent::tearDownAfterClass();
unlink("dummy.txt");
}

#[Test]
public function fileIsEncryptedProperly(): void
{
Expand Down

0 comments on commit ae0e782

Please sign in to comment.