Skip to content

Commit 0e1fa0e

Browse files
Merge pull request #187 from StudioMaX/2.0-sync-with-master
[WIP] Sync 2.0 with 1.9.17-201905121748
2 parents 031fee8 + 26acc6e commit 0e1fa0e

Some content is hidden

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

120 files changed

+9882
-5598
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
end_of_line = LF
7+
8+
[*.php]
9+
indent_style = tab

.gitattributes

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@
2121
*.rtf diff=astextplain
2222
*.RTF diff=astextplain
2323

24-
.gitattributes export-ignore
25-
.gitignore export-ignore
26-
/phpunit.xml export-ignore
27-
/tests export-ignore
28-
/.travis.yml export-ignore
29-
/demos export-ignore
24+
/.editorconfig export-ignore
25+
.gitattributes export-ignore
26+
.gitignore export-ignore
27+
/.travis.yml export-ignore
28+
Doxyfile export-ignore
29+
/composer.json export-ignore
30+
/.phpcs.xml export-ignore
31+
/phpunit.xml.dist export-ignore
32+
/tests export-ignore
33+
/phpstan.neon export-ignore

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ local.properties
6262
*.tlb
6363
*.tli
6464
*.tlh
65-
*.tmp
6665
*.vspscc
6766
.builds
6867
*.dotCover
@@ -169,9 +168,8 @@ pip-log.txt
169168
.DS_Store
170169
demos/php_error.log
171170

172-
173-
#############
174-
## composer
175-
#############
171+
# Composer
176172
/vendor
177173
/composer.lock
174+
/composer.local.json
175+
/composer.phar

.travis.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
language: php
2+
sudo: false
3+
4+
cache:
5+
directories:
6+
- $HOME/.composer/cache/files
27

38
php:
49
- 5.4
510
- 5.5
611
- 5.6
712
- 7.0
813
- 7.1
9-
- hhvm
14+
- 7.2
15+
- 7.3
1016

11-
sudo: false
17+
matrix:
18+
include:
19+
- php: 7.1
20+
env: PHPSTAN=1
1221

13-
env:
14-
- COMPOSER_OPTS=""
15-
- COMPOSER_OPTS="--prefer-lowest"
16-
17-
install:
18-
- composer self-update
19-
- composer update $COMPOSER_OPTS
22+
before_script:
23+
- travis_retry composer install --prefer-source --quiet --no-interaction
24+
- if [[ $PHPSTAN = 1 ]]; then composer require --dev phpstan/phpstan:^0.9; fi
2025

2126
script:
22-
- phpunit
23-
- ./tests/lint.sh
24-
25-
git:
26-
depth: 5
27+
- vendor/bin/phpunit
28+
- composer lint
29+
- if [[ $PHPSTAN = 1 ]]; then vendor/bin/phpstan analyse -c phpstan.neon -l 4 src tests; fi

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ getID3
22
======
33

44
A PHP library to extract and write useful information to/from popular multimedia file formats.
5-
If you want to donate, there is a link on <http://www.getid3.org> for PayPal donations.
5+
If you want to donate, there is a link on <https://www.getid3.org> for PayPal donations.
66

77
[![Latest Stable Version](https://poser.pugx.org/james-heinrich/getID3/version.svg)](https://packagist.org/packages/james-heinrich/getid3)
88
[![Build Status](https://travis-ci.org/JamesHeinrich/getID3.svg?branch=2.0)](https://travis-ci.org/JamesHeinrich/getID3)

bin/metaflac.exe

357 KB
Binary file not shown.

bin/readme.helperapps.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/////////////////////////////////////////////////////////////////
22
/// getID3() by James Heinrich <info@getid3.org> //
33
// available at http://getid3.sourceforge.net //
4-
// or http://www.getid3.org //
4+
// or https://www.getid3.org //
55
// also https://github.com/JamesHeinrich/getID3 //
66
/////////////////////////////////////////////////////////////////
77
// //
@@ -53,4 +53,4 @@ Taken from http://www.etree.org/shncom.html
5353
Changelog:
5454

5555
2003.12.29:
56-
* Initial release
56+
* Initial release

bin/vorbiscomment.exe

134 KB
Binary file not shown.

0 commit comments

Comments
 (0)