Skip to content

Commit 60967d5

Browse files
simbigSimon Bigelmayrspawnia
authored
feature: Add CSVArray (#1)
* feature: Add `CSVArray` Co-authored-by: Simon Bigelmayr <[email protected]> Co-authored-by: SimBig <[email protected]> Co-authored-by: Benedikt Franke <[email protected]>
1 parent 718638e commit 60967d5

File tree

7 files changed

+931
-522
lines changed

7 files changed

+931
-522
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## v1.1.0
11+
12+
### Added
13+
14+
- Add `CSVArray`
15+
1016
## v1.0.0
1117

1218
### Added

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ coverage: vendor ## Collects coverage from running unit tests with phpunit
1414
.PHONY: fix
1515
fix: vendor
1616
vendor/bin/php-cs-fixer fix
17+
vendor/bin/rector process
1718

1819
.PHONY: infection
1920
infection: vendor ## Runs mutation tests with infection

composer.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
{
22
"name": "mll-lab/php-utils",
3-
"type": "library",
43
"description": "Shared PHP utility functions of MLL",
5-
"homepage": "https://github.com/mll-lab/php-utils",
64
"license": "MIT",
5+
"type": "library",
76
"authors": [
87
{
98
"name": "Benedikt Franke",
109
"email": "[email protected]"
1110
}
1211
],
12+
"homepage": "https://github.com/mll-lab/php-utils",
13+
"support": {
14+
"issues": "https://github.com/mll-lab/php-utils/issues",
15+
"source": "https://github.com/mll-lab/php-utils"
16+
},
1317
"require": {
1418
"php": "^7.4 || ^8",
1519
"illuminate/support": "^8.73",
20+
"mll-lab/str_putcsv": "^1",
1621
"thecodingmachine/safe": "^1"
1722
},
1823
"require-dev": {
@@ -26,16 +31,10 @@
2631
"phpstan/phpstan-phpunit": "^1",
2732
"phpstan/phpstan-strict-rules": "^1",
2833
"phpunit/phpunit": "^9",
34+
"rector/rector": "^0.12.15",
2935
"symfony/var-dumper": "^5",
3036
"thecodingmachine/phpstan-safe-rule": "^1.1"
3137
},
32-
"config": {
33-
"platform": {
34-
"php": "7.4.24"
35-
},
36-
"preferred-install": "dist",
37-
"sort-packages": true
38-
},
3938
"autoload": {
4039
"psr-4": {
4140
"MLL\\Utils\\": "src/"
@@ -49,8 +48,11 @@
4948
"vendor/symfony/var-dumper/Resources/functions/dump.php"
5049
]
5150
},
52-
"support": {
53-
"issues": "https://github.com/mll-lab/php-utils/issues",
54-
"source": "https://github.com/mll-lab/php-utils"
51+
"config": {
52+
"platform": {
53+
"php": "7.4.24"
54+
},
55+
"preferred-install": "dist",
56+
"sort-packages": true
5557
}
5658
}

0 commit comments

Comments
 (0)