File tree 6 files changed +22
-24
lines changed
6 files changed +22
-24
lines changed Original file line number Diff line number Diff line change
1
+ /. * export-ignore
2
+ /composer.lock export-ignore
3
+ /phpcs.xml.dist export-ignore
4
+ /phpunit.xml.dist export-ignore
5
+ /tests export-ignore
Original file line number Diff line number Diff line change 5
5
.DS_Store
6
6
.idea
7
7
.phpintel
8
- composer.phar
9
-
10
- # Local System Files (i.e. cache, logs, etc.) #
11
- /cache
12
- /build /logs
13
- /build /coverage
14
- /tmp
15
-
16
- # Test Related Files #
17
- /phpunit.xml
18
-
19
- # Exception output
20
- TelegramException.log
21
8
22
9
# Composer
23
- vendor /
10
+ /composer.phar
11
+ /vendor
24
12
13
+ # Test-Related Files
14
+ /clover.xml
15
+ /phpcs.xml
16
+ /phpunit.xml
25
17
26
- # phpDocumentor Logs #
18
+ # phpDocumentor Logs
27
19
phpdoc- *
28
20
29
- # OSX #
21
+ # OSX
30
22
._ *
31
23
.Spotlight-V100
32
24
.Trashes
Original file line number Diff line number Diff line change 1
- dist : trusty
2
- sudo : required
3
1
language : php
2
+ sudo : required
3
+ dist : trusty
4
4
5
5
addons :
6
6
mariadb : 10.1
7
7
8
8
cache :
9
9
directories :
10
- - " $HOME/.composer/cache"
10
+ - vendor
11
+ - $HOME/.composer/cache
11
12
12
13
php :
13
14
- 5.5
@@ -44,7 +45,7 @@ before_script:
44
45
45
46
script :
46
47
- composer check-code
47
- - if [ "$TRAVIS_PHP_VERSION" == "7.2 " ] ; then composer test-cov; else composer test; fi
48
+ - if [ "$TRAVIS_PHP_VERSION" == "7.3 " ]; then composer test-cov; else composer test; fi
48
49
49
50
after_script :
50
- - if [ "$TRAVIS_PHP_VERSION" == "7.2 " ]; then composer test-cov-upload; fi
51
+ - if [ "$TRAVIS_PHP_VERSION" == "7.3 " ]; then composer test-cov-upload; fi
Original file line number Diff line number Diff line change 47
47
},
48
48
"scripts" : {
49
49
"check-code" : [
50
- " \" vendor/bin/phpcs\" --standard=phpcs.xml - snp src/ tests/"
50
+ " \" vendor/bin/phpcs\" -snp src/ tests/"
51
51
],
52
52
"test" : [
53
53
" \" vendor/bin/phpunit\" "
54
54
],
55
55
"test-cov" : [
56
- " \" vendor/bin/phpunit\" --coverage-clover build/logs/ clover.xml"
56
+ " \" vendor/bin/phpunit\" --coverage-clover clover.xml"
57
57
],
58
58
"test-cov-upload" : [
59
- " wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/logs/ clover.xml"
59
+ " wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover clover.xml"
60
60
]
61
61
}
62
62
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments