Skip to content

Commit 343d031

Browse files
committed
Merge pull request #11 from Miljar/v0.2.1
V0.2.1
2 parents 43167e4 + 69bb912 commit 343d031

6 files changed

+916
-12
lines changed

.coveralls.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src_dir: lib

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
phpunit.xml
22
tests/log
3+
vendor

.travis.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,23 @@ language: php
33
php:
44
- 5.3
55
- 5.4
6+
- 5.5
67

7-
script: phpunit
8+
matrix:
9+
allow_failures:
10+
- php: 5.5
11+
12+
script:
13+
- mkdir -p build/logs
14+
- php vendor/bin/phpunit -c phpunit.xml.dist
15+
- ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
816

917
before_script:
1018
- composer install --dev --prefer-source
1119

20+
after_script:
21+
- php vendor/bin/coveralls -v
22+
1223
before_install:
1324
- composer self-update
1425
- wget http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-9.32.tar.gz

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [PHPExif v0.2](http://github.com/Miljar/php-exif) [![Build Status](https://travis-ci.org/Miljar/php-exif.png?branch=master)](https://travis-ci.org/Miljar/php-exif) [![Coverage Status](https://coveralls.io/repos/Miljar/php-exif/badge.png)](https://coveralls.io/r/Miljar/php-exif)
1+
# [PHPExif v0.2.1](http://github.com/Miljar/php-exif) [![Build Status](https://travis-ci.org/Miljar/php-exif.png?branch=master)](https://travis-ci.org/Miljar/php-exif) [![Coverage Status](https://coveralls.io/repos/Miljar/php-exif/badge.png)](https://coveralls.io/r/Miljar/php-exif)
22

33
PHPExif is a library which gives you easy access to the EXIF meta-data of an image.
44

composer.json

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "miljar/php-exif",
33
"description": "Object-Oriented EXIF parsing",
4+
"type": "library",
45
"license": "MIT",
56
"authors": [
67
{
@@ -9,17 +10,21 @@
910
"role": "Developer"
1011
}
1112
],
12-
"keywords": ["EXIF", "IPTC", "jpeg", "tiff"],
13+
"keywords": ["EXIF", "IPTC", "jpeg", "tiff", "exiftool"],
1314
"require": {
1415
"php": ">=5.3.0"
1516
},
16-
"require-dev": {
17-
"phpunit/phpunit": "3.7.*"
18-
},
19-
"autoload": {
20-
"psr-0":
21-
{
22-
"PHPExif": "lib/"
23-
}
24-
}
17+
"require-dev": {
18+
"phpunit/phpunit": "3.7.*",
19+
"satooshi/php-coveralls": "~0.6",
20+
"pdepend/pdepend": "dev-master",
21+
"phpmd/phpmd": "dev-master",
22+
"sebastian/phpcpd": "1.4.*@stable",
23+
"squizlabs/php_codesniffer": "1.4.*@stable"
24+
},
25+
"autoload": {
26+
"psr-0": {
27+
"PHPExif": "lib/"
28+
}
29+
}
2530
}

0 commit comments

Comments
 (0)