-
-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
706 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/vendor | ||
/composer.lock | ||
/.idea | ||
/build | ||
/composer.lock | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
language: php | ||
|
||
php: | ||
- 7.1 | ||
- 7.1.0 | ||
- 7.2.0 | ||
- 7.3.0 | ||
- 7.4.0 | ||
- 8.0.0 | ||
- 8.1.0 | ||
|
||
install: | ||
- travis_retry composer install --no-interaction --prefer-source | ||
|
||
script: | ||
- vendor/bin/phpunit | ||
|
||
after_script: | ||
- wget https://scrutinizer-ci.com/ocular.phar | ||
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,54 @@ | ||
{ | ||
"name": "smart145/fast-excel", | ||
"type": "library", | ||
"keywords": [ | ||
"laravel", | ||
"excel", | ||
"csv", | ||
"xls", | ||
"xlsx" | ||
], | ||
"description": "Fast Excel import/export for Laravel", | ||
"require": { | ||
"php": "8.*", | ||
"illuminate/database": "5.* || 6.* || 7.* || 8.* || 9.*", | ||
"illuminate/support": "5.* || 6.* || 7.* || 8.* || 9.*", | ||
"smart145/spout": "2.7.9" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Smart145\\FastExcel\\": "src/" | ||
"name": "smart145/fast-excel", | ||
"type": "library", | ||
"keywords": [ | ||
"laravel", | ||
"excel", | ||
"csv", | ||
"xls", | ||
"xlsx" | ||
], | ||
"description": "Fast Excel import/export for Laravel", | ||
"require": { | ||
"php": "^8.0", | ||
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0|^10.0", | ||
"smart145/spout": "2.7.9" | ||
}, | ||
"files": [ | ||
"src/functions/fastexcel.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Smart145\\FastExcel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Smart145\\FastExcel\\Providers\\FastExcelServiceProvider" | ||
] | ||
} | ||
}, | ||
"license": "MIT", | ||
"minimum-stability": "stable" | ||
"require-dev": { | ||
"illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0|^10.0", | ||
"phpunit/phpunit": "^9.5", | ||
"squizlabs/php_codesniffer": "3.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Smart145\\FastExcel\\": "src/" | ||
}, | ||
"files": [ | ||
"src/functions/fastexcel.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Smart145\\FastExcel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Smart145\\FastExcel\\Providers\\FastExcelServiceProvider" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit tests" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "rap2h", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false"> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="all"> | ||
<directory suffix="Test.php">tests/</directory> | ||
<testsuite name="Unit"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">src/</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="tap" target="build/report.tap"/> | ||
<log type="junit" target="build/report.junit.xml"/> | ||
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/> | ||
<log type="coverage-text" target="build/coverage.txt"/> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
</logging> | ||
</phpunit> | ||
|
||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">./app</directory> | ||
</include> | ||
</coverage> | ||
</phpunit> |
Oops, something went wrong.