Skip to content

Commit

Permalink
上传vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
FeiLiao-9 committed Aug 23, 2019
1 parent f8f4bf1 commit 1e64c1a
Show file tree
Hide file tree
Showing 2,504 changed files with 427,602 additions and 3,978 deletions.
3 changes: 3 additions & 0 deletions vendor/PHPExcel/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/Build export-ignore
/unitTests export-ignore
README.md export-ignore
9 changes: 9 additions & 0 deletions vendor/PHPExcel/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
build/PHPExcel.phar
unitTests/codeCoverage
analysis

## IDE support
*.buildpath
*.project
/.settings
/.idea
29 changes: 29 additions & 0 deletions vendor/PHPExcel/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
## Packages
- sudo apt-get -qq update > /dev/null
## Composer
- composer self-update
- composer install --prefer-source --dev
- phpenv global "$TRAVIS_PHP_VERSION"

script:
## PHP_CodeSniffer
- ./vendor/bin/phpcs --report-width=200 --report-summary --report-full Classes/ unitTests/ --standard=PSR2 -n
## PHPUnit
- phpunit -c ./unitTests/

notifications:
email: false
Loading

0 comments on commit 1e64c1a

Please sign in to comment.