Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
# php examples/dump-media.php -d tests/media-samples/image/broken/pel-176-RPT200076_03.jpg

- name: Run test suite
# continue-on-error: true
run: vendor/bin/phpunit ./tests
continue-on-error: true
run: vendor/bin/phpunit --color=always --testdox --display-deprecations --display-phpunit-deprecations ./tests

# - name: Code style test
# if: ${{ matrix.php-version == 7.4 }}
Expand All @@ -84,5 +84,5 @@ jobs:
# - name: "Install PHPStan"
# run: "composer require --dev phpstan/phpstan:^1.2 --ansi"

# - name: "Run a static analysis with phpstan/phpstan"
# run: "vendor/bin/phpstan"
- name: "Run a static analysis with phpstan/phpstan"
run: vendor/bin/phpstan analyze
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor
composer.lock
.DS_Store
.phpunit*
9 changes: 9 additions & 0 deletions EXIFTOOL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## exiftool

https://github.com/exiftool/exiftool
https://github.com/exiftool/exiftool/tree/master/lib/Image/ExifTool

# commands

Dump all tags info:
exiftool -listx >out
6 changes: 0 additions & 6 deletions SPECIFICATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,3 @@ class MyClass
}
}
```


## exiftool

https://github.com/exiftool/exiftool
https://github.com/exiftool/exiftool/tree/master/lib/Image/ExifTool
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
"monolog/monolog": "^3",
"shanethehat/pretty-xml": "*",
"sibche/plist": "*",
"symfony/stopwatch": "^6 | ^7"
"symfony/stopwatch": "^7"
},
"require-dev" : {
"ext-exif": "*",
"phpunit/phpunit": "^10",
"phpunit/phpunit": "^10 | ^11",
"squizlabs/php_codesniffer": "*",
"symfony/console": "^6 | ^7",
"symfony/finder": "^6 | ^7",
"symfony/filesystem": "^6 | ^7",
"symfony/process": "^6 | ^7",
"symfony/var-dumper": "^6 | ^7",
"symfony/yaml": "^6 | ^7",
"symfony/console": "^7",
"symfony/finder": "^7",
"symfony/filesystem": "^7",
"symfony/process": "^7",
"symfony/var-dumper": "^7",
"symfony/yaml": "^7",
"bramus/monolog-colored-line-formatter": "^3",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
"phpstan/phpstan": "^2",
"phpstan/extension-installer": "*",
"phpstan/phpstan-deprecation-rules": "^2"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
parameters:
level: 5
level: 2
paths:
- src
- tests
Expand Down
Loading
Loading