Skip to content

Commit b30ac71

Browse files
committed
Initial commit
0 parents  commit b30ac71

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2721
-0
lines changed

.htaccess

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Options All -Indexes
2+
3+
<Files .htaccess>
4+
order allow,deny
5+
deny from all
6+
</Files>
7+
8+
<Files .env>
9+
order allow,deny
10+
deny from all
11+
</Files>
12+
13+
RewriteEngine on
14+
RewriteRule ^$ public/ [L]
15+
RewriteRule (.*) public/$1 [L]

composer.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"require": {
3+
"flightphp/core": "^3.13",
4+
"flightphp/active-record": "^0.5.1",
5+
"monolog/monolog": "^3.8",
6+
"enqueue/fs": "^0.10.19"
7+
},
8+
"autoload": {
9+
"psr-4": {
10+
"App\\": "src/"
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)