Skip to content

Commit

Permalink
Update all non-major dependencies (openspout#264)
Browse files Browse the repository at this point in the history
* Update all non-major dependencies

| datasource | package                   | from   | to     |
| ---------- | ------------------------- | ------ | ------ |
| packagist  | friendsofphp/php-cs-fixer | 3.60.0 | 3.61.1 |
| packagist  | phpstan/phpstan           | 1.11.8 | 1.11.9 |

* CS Fix

* CS Fix

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Filippo Tessarotto <[email protected]>
  • Loading branch information
renovate[bot] and Slamdunk authored Aug 5, 2024
1 parent 393299a commit 038b570
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOCKER_PHP_EXEC := docker compose run php
DOCKER_PHP_EXEC := docker compose run --rm php

SRCS := $(shell find ./src ./tests -type f -not -path "*/resources/generated_*")

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
},
"require-dev": {
"ext-zlib": "*",
"friendsofphp/php-cs-fixer": "^3.60.0",
"friendsofphp/php-cs-fixer": "^3.61.1",
"infection/infection": "^0.29.6",
"phpbench/phpbench": "^1.3.1",
"phpstan/phpstan": "^1.11.8",
"phpstan/phpstan": "^1.11.9",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"phpunit/phpunit": "^10.5.20 || ^11.2.8"
"phpunit/phpunit": "^10.5.20 || ^11.3.0"
},
"suggest": {
"ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
Expand Down
3 changes: 1 addition & 2 deletions src/Reader/XLSX/Manager/StyleManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ class StyleManager implements StyleManagerInterface
private array $numFmtIdToIsDateFormatCache = [];

/**
* @param string $filePath Path of the XLSX file being read
* @param ?string $stylesXMLFilePath
* @param string $filePath Path of the XLSX file being read
*/
public function __construct(string $filePath, ?string $stylesXMLFilePath)
{
Expand Down

0 comments on commit 038b570

Please sign in to comment.