Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashar Ahmad committed Aug 22, 2022
1 parent 86028aa commit e90d989
Show file tree
Hide file tree
Showing 11 changed files with 427 additions and 370 deletions.
1 change: 1 addition & 0 deletions .phpunit.result.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":1,"defects":[],"times":{"ZanySoft\\Zip\\Tests\\ZipTest::testCreateZipFileWithoutAddingFiles":0.123,"ZanySoft\\Zip\\Tests\\ZipTest::testCreateZipWithAddingFiles":0.016,"ZanySoft\\Zip\\Tests\\ZipTest::testSetSkipThrowsExceptionOnInvalidMode":0.011,"ZanySoft\\Zip\\Tests\\ZipTest::testSetValidSkipMode":0.008,"ZanySoft\\Zip\\Tests\\ZipTest::testListFiles":0.01,"ZanySoft\\Zip\\Tests\\ZipTest::testHasFile":0.012,"ZanySoft\\Zip\\Tests\\ZipTest::testHasFileDoesNotExist":0.012,"ZanySoft\\Zip\\Tests\\ZipTest::testExtract":0.013}}
17 changes: 15 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"keywords": [
"laravel-zip",
"laravel",
"laravel5",
"laravel 6",
"laravel 7",
"laravel 8",
"zip",
"unzip",
"extract",
Expand All @@ -24,13 +26,24 @@
],
"require": {
"php": ">=7.1",
"illuminate/support": "^6.0|^7.0|^8.0"
"illuminate/support": "^6.0|^7.0|^8.0",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.9",
"orchestra/testbench": "^6.24"
},
"autoload": {
"psr-4": {
"ZanySoft\\Zip\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ZanySoft\\Zip\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
Expand Down
16 changes: 16 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
Loading

0 comments on commit e90d989

Please sign in to comment.