Skip to content

Commit

Permalink
医务系统
Browse files Browse the repository at this point in the history
  • Loading branch information
chaochao2-0 committed Aug 12, 2020
0 parents commit 6860dc0
Show file tree
Hide file tree
Showing 550 changed files with 145,179 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .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 .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 .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
Binary file added 555.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6860dc0

Please sign in to comment.