Skip to content

Commit bc104ad

Browse files
committed
Autoloaded classes and created index.php
1 parent 22223e4 commit bc104ad

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "faiyaz/php-key-value-datastructure",
3+
"authors": [
4+
{
5+
"name": "Faiyaz Rahman",
6+
"email": "faiyazrahman03@gmail.com"
7+
}
8+
],
9+
"require": {},
10+
"autoload": {
11+
"psr-4": {
12+
"App\\": "src/"
13+
}
14+
}
15+
}

public/index.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
include_once '../vendor/autoload.php';

0 commit comments

Comments
 (0)