Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit 71953ee

Browse files
authored
Merge pull request #44 from PhpSlides/dev
Dev
2 parents 0c5f9ee + 62a3f49 commit 71953ee

File tree

4 files changed

+686
-20
lines changed

4 files changed

+686
-20
lines changed

.env.example

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
APP_NAME=PhpSlides
2-
APP_VERSION=1.3.7
2+
APP_VERSION=1.4.x
33
APP_ENV=development
4-
APP_URL=http://localhost
54
JWT_SECRET=
65

76
# DATABASE INFORMATION

.gitignore

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
/node_modules
2-
/public/build
3-
/public/storage
4-
/storage/*.key
5-
/vendor
6-
/.idea
7-
/.vscode
8-
.log
9-
.env
10-
.env.dev
11-
.env.development
12-
log
13-
*.log
14-
access_log
15-
composer.lock
1+
/node_modules
2+
/public/build
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
/.idea
7+
/.vscode
8+
.log
9+
.env
10+
.env.prod
11+
.env.local
12+
.env.stage
13+
.env.staging
14+
.env.production
15+
log
16+
*.log
17+
access_log
1618
composer.phar

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Edit the .env file to configure database settings, application settings, and oth
102102

103103
```bash
104104
APP_NAME=PhpSlides
105-
APP_VERSION=1.3.x
105+
APP_VERSION=1.4.x
106106
APP_DEBUG=true
107107
APP_ENV=development
108108
```
@@ -113,11 +113,12 @@ Which handles the behavior of a viewing files on the web
113113

114114
```json
115115
{
116-
"deny": ["public/assets/*.png"],
116+
"deny": ["/assets/*.png"],
117117
"message": {
118118
"contents": "403 | Forbidden",
119119
"components": "Errors::403",
120-
"content-type": "text/html"
120+
"content-type": "text/html",
121+
"http_code": 403
121122
},
122123
"charset": "UTF-8"
123124
}

0 commit comments

Comments
 (0)