Skip to content

Commit f6c9a40

Browse files
committed
chore: add .gitattributes + deps
1 parent d4b1177 commit f6c9a40

5 files changed

Lines changed: 28 additions & 6 deletions

File tree

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Normalize text sources to LF in the repository and on checkout everywhere.
2+
# Critical for a byte-level library: keeps source and fixtures byte-identical
3+
# across Windows/macOS/Linux checkouts regardless of core.autocrlf.
4+
*.php text eol=lf
5+
*.md text eol=lf
6+
*.xml text eol=lf
7+
*.xml.dist text eol=lf
8+
*.json text eol=lf
9+
*.toml text eol=lf
10+
*.yml text eol=lf
11+
*.yaml text eol=lf
12+
*.txt text eol=lf
13+
Makefile text eol=lf
14+
15+
# Byte-exact fixtures must never be transformed (CRLF/auto-detection off).
16+
test/**/*.bin -text
17+
*.png binary
18+
*.jpg binary
19+
*.gif binary
20+
*.pdf binary
21+
*.ttf binary
22+
*.otf binary

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.9.0
1+
2.10.0

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"require": {
2828
"php": ">=8.2",
2929
"ext-zlib": "*",
30-
"tecnickcom/tc-lib-color": "^2.9",
31-
"tecnickcom/tc-lib-pdf-encrypt": "^2.6"
30+
"tecnickcom/tc-lib-color": "^2.10",
31+
"tecnickcom/tc-lib-pdf-encrypt": "^2.7"
3232
},
3333
"minimum-stability": "stable",
3434
"prefer-stable": true,

resources/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Vcs-Browser: https://github.com/~#VENDOR#~/~#PROJECT#~
1212
Package: ~#PKGNAME#~
1313
Provides: php-~#PROJECT#~
1414
Architecture: all
15-
Depends: php (>= 8.2.0), php-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.9.0), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.6.0), ${misc:Depends}
15+
Depends: php (>= 8.2.0), php-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.10.0), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.7.0), ${misc:Depends}
1616
Description: PHP PDF Graph Library
1717
PHP library containing PDF graphic and geometric methods.

resources/rpm/rpm.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ BuildArch: noarch
1717
Requires: php(language) >= 8.2.0
1818
Requires: php-zlib
1919
Requires: php-composer(%{c_vendor}/tc-lib-color) < 3.0.0
20-
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.9.0
20+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.10.0
2121
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) < 3.0.0
22-
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.6.0
22+
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.7.0
2323

2424
Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version}
2525
Provides: php-%{gh_project} = %{version}

0 commit comments

Comments
 (0)