Skip to content

Commit 87fb77c

Browse files
committed
initial commit
1 parent a2eb217 commit 87fb77c

File tree

10 files changed

+2618
-0
lines changed

10 files changed

+2618
-0
lines changed

.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
APP_ENV = "dev"
2+
3+
DB_HOST = "localhost"
4+
DB_USER = ""
5+
DB_PASSWORD = ""
6+
DB_NAME = ""
7+

assets/css/.gitkeep

Whitespace-only changes.

assets/js/.gitkeep

Whitespace-only changes.

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "scrawler/mvc",
3+
"description": "use scrawler framework as mvc framework",
4+
"type": "project",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"App\\": "src/"
9+
}
10+
},
11+
12+
"authors": [
13+
{
14+
"name": "ipranjal",
15+
"email": "pranjaltech10@gmail.com"
16+
}
17+
],
18+
"require": {
19+
"scrawler/app": "^1.0",
20+
"scrawler/database": "^1.0",
21+
"filp/whoops": "^2.16",
22+
"scrawler/blade": "^1.0",
23+
"scrawler/storage": "^1.0",
24+
"vlucas/phpdotenv": "^5.6"
25+
}
26+
}

0 commit comments

Comments
 (0)