Skip to content

Commit 1e64c1a

Browse files
committed
上传vendor
1 parent f8f4bf1 commit 1e64c1a

File tree

2,504 files changed

+427602
-3978
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,504 files changed

+427602
-3978
lines changed

vendor/PHPExcel/.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/Build export-ignore
2+
/unitTests export-ignore
3+
README.md export-ignore

vendor/PHPExcel/.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
build/PHPExcel.phar
2+
unitTests/codeCoverage
3+
analysis
4+
5+
## IDE support
6+
*.buildpath
7+
*.project
8+
/.settings
9+
/.idea

vendor/PHPExcel/.travis.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: php
2+
3+
php:
4+
- 5.4
5+
- 5.5
6+
- 5.6
7+
- 7.0
8+
- hhvm
9+
10+
matrix:
11+
allow_failures:
12+
- php: hhvm
13+
14+
before_script:
15+
## Packages
16+
- sudo apt-get -qq update > /dev/null
17+
## Composer
18+
- composer self-update
19+
- composer install --prefer-source --dev
20+
- phpenv global "$TRAVIS_PHP_VERSION"
21+
22+
script:
23+
## PHP_CodeSniffer
24+
- ./vendor/bin/phpcs --report-width=200 --report-summary --report-full Classes/ unitTests/ --standard=PSR2 -n
25+
## PHPUnit
26+
- phpunit -c ./unitTests/
27+
28+
notifications:
29+
email: false

0 commit comments

Comments
 (0)