Skip to content

Commit b4056b1

Browse files
committed
allow multiple file write at once
0 parents  commit b4056b1

File tree

10 files changed

+1856
-0
lines changed

10 files changed

+1856
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
.phpunit.cache
3+
vendor

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "rahul/file-handler",
3+
"description": "A simple library for abstracting various file operations and providing additional helper functions for file manipulation",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"rcsofttech85\\FileHandler\\": "src/"
9+
}
10+
},
11+
"authors": [
12+
{
13+
"name": "rahul",
14+
"email": "rcsofttech85@gmail.com"
15+
}
16+
],
17+
"minimum-stability": "stable",
18+
"require": {
19+
"php": ">=8.1"
20+
},
21+
"require-dev": {
22+
"phpunit/phpunit": "^10.3"
23+
}
24+
}

0 commit comments

Comments
 (0)