Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
25b7f8b0
Unverified
Commit
25b7f8b0
authored
Jun 14, 2019
by
Armando Lüscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update git metafiles, simpler coverage for PHP 7.3
parent
8f2c9da0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
24 deletions
+22
-24
.gitattributes
.gitattributes
+5
-0
.gitignore
.gitignore
+8
-16
.travis.yml
.travis.yml
+6
-5
.gitkeep
build/.gitkeep
+0
-0
composer.json
composer.json
+3
-3
phpcs.xml.dist
phpcs.xml.dist
+0
-0
No files found.
.gitattributes
0 → 100644
View file @
25b7f8b0
/.* export-ignore
/composer.lock export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore
.gitignore
View file @
25b7f8b0
...
...
@@ -5,28 +5,20 @@
.DS_Store
.idea
.phpintel
composer.phar
# Local System Files (i.e. cache, logs, etc.) #
/cache
/build/logs
/build/coverage
/tmp
# Test Related Files #
/phpunit.xml
#Exception output
TelegramException.log
# Composer
vendor/
/composer.phar
/vendor
# Test-Related Files
/clover.xml
/phpcs.xml
/phpunit.xml
# phpDocumentor Logs
#
# phpDocumentor Logs
phpdoc-*
# OSX
#
# OSX
._*
.Spotlight-V100
.Trashes
.travis.yml
View file @
25b7f8b0
dist
:
trusty
sudo
:
required
language
:
php
sudo
:
required
dist
:
trusty
addons
:
mariadb
:
10.1
cache
:
directories
:
-
"
$HOME/.composer/cache"
-
vendor
-
$HOME/.composer/cache
php
:
-
5.5
...
...
@@ -44,7 +45,7 @@ before_script:
script
:
-
composer check-code
-
if [ "$TRAVIS_PHP_VERSION" == "7.
2" ]
; then composer test-cov; else composer test; fi
-
if [ "$TRAVIS_PHP_VERSION" == "7.
3" ]
; then composer test-cov; else composer test; fi
after_script
:
-
if [ "$TRAVIS_PHP_VERSION" == "7.
2
" ]; then composer test-cov-upload; fi
-
if [ "$TRAVIS_PHP_VERSION" == "7.
3
" ]; then composer test-cov-upload; fi
build/.gitkeep
deleted
100644 → 0
View file @
8f2c9da0
composer.json
View file @
25b7f8b0
...
...
@@ -47,16 +47,16 @@
},
"scripts"
:
{
"check-code"
:
[
"
\"
vendor/bin/phpcs
\"
-
-standard=phpcs.xml -
snp src/ tests/"
"
\"
vendor/bin/phpcs
\"
-snp src/ tests/"
],
"test"
:
[
"
\"
vendor/bin/phpunit
\"
"
],
"test-cov"
:
[
"
\"
vendor/bin/phpunit
\"
--coverage-clover
build/logs/
clover.xml"
"
\"
vendor/bin/phpunit
\"
--coverage-clover clover.xml"
],
"test-cov-upload"
:
[
"wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover
build/logs/
clover.xml"
"wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover clover.xml"
]
}
}
phpcs.xml
→
phpcs.xml
.dist
View file @
25b7f8b0
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment