Skip to content

Commit

Permalink
Uploaded files
Browse files Browse the repository at this point in the history
  • Loading branch information
atakansn committed Apr 7, 2022
1 parent cf97e83 commit 1be9dbe
Show file tree
Hide file tree
Showing 6 changed files with 552 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[**.php]
charset = utf-8
end_of_line = crlf
indent_size = 4
indent_style = space
insert_final_newline = false
max_line_length = 120
tab_width = 4

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor
.idea
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "php/helpers",
"description": "PHP functions used in daily life",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Helper\\": "src/"
}
},
"authors": [
{
"name": "Atakan Senturk",
"email": "[email protected]"
}
],
"require": {
"ext-fileinfo": "*"
}
}
11 changes: 11 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

use Helper\FileSystem;

require __DIR__ . '/vendor/autoload.php';

$file = new FileSystem();

//


Loading

0 comments on commit 1be9dbe

Please sign in to comment.