Skip to content

Commit 6f3a192

Browse files
committed
update version
1 parent 6916f61 commit 6f3a192

File tree

82 files changed

+1645
-37685
lines changed

Some content is hidden

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

82 files changed

+1645
-37685
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ root = true
33
[*]
44
charset = utf-8
55
end_of_line = lf
6-
insert_final_newline = true
7-
indent_style = space
86
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

1111
[*.md]

.env.example

Lines changed: 36 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,57 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5+
APP_TIMEZONE=UTC
56
APP_URL=http://localhost
67

8+
APP_LOCALE=en
9+
APP_FALLBACK_LOCALE=en
10+
APP_FAKER_LOCALE=en_US
11+
12+
APP_MAINTENANCE_DRIVER=file
13+
# APP_MAINTENANCE_STORE=database
14+
15+
BCRYPT_ROUNDS=12
16+
717
LOG_CHANNEL=stack
18+
LOG_STACK=single
19+
LOG_DEPRECATIONS_CHANNEL=null
820
LOG_LEVEL=debug
921

10-
DB_CONNECTION=mysql
11-
DB_HOST=127.0.0.1
12-
DB_PORT=3306
13-
DB_DATABASE=laravel
14-
DB_USERNAME=root
15-
DB_PASSWORD=
16-
17-
BROADCAST_DRIVER=log
18-
CACHE_DRIVER=file
19-
FILESYSTEM_DRIVER=local
20-
QUEUE_CONNECTION=sync
21-
SESSION_DRIVER=file
22+
DB_CONNECTION=sqlite
23+
# DB_HOST=127.0.0.1
24+
# DB_PORT=3306
25+
# DB_DATABASE=laravel
26+
# DB_USERNAME=root
27+
# DB_PASSWORD=
28+
29+
SESSION_DRIVER=database
2230
SESSION_LIFETIME=120
31+
SESSION_ENCRYPT=false
32+
SESSION_PATH=/
33+
SESSION_DOMAIN=null
34+
35+
BROADCAST_CONNECTION=log
36+
FILESYSTEM_DISK=local
37+
QUEUE_CONNECTION=database
38+
39+
CACHE_STORE=database
40+
CACHE_PREFIX=
2341

2442
MEMCACHED_HOST=127.0.0.1
2543

44+
REDIS_CLIENT=phpredis
2645
REDIS_HOST=127.0.0.1
2746
REDIS_PASSWORD=null
2847
REDIS_PORT=6379
2948

30-
MAIL_MAILER=smtp
31-
MAIL_HOST=mailhog
32-
MAIL_PORT=1025
49+
MAIL_MAILER=log
50+
MAIL_HOST=127.0.0.1
51+
MAIL_PORT=2525
3352
MAIL_USERNAME=null
3453
MAIL_PASSWORD=null
3554
MAIL_ENCRYPTION=null
36-
MAIL_FROM_ADDRESS=null
55+
MAIL_FROM_ADDRESS="[email protected]"
3756
MAIL_FROM_NAME="${APP_NAME}"
3857

3958
AWS_ACCESS_KEY_ID=
@@ -42,10 +61,4 @@ AWS_DEFAULT_REGION=us-east-1
4261
AWS_BUCKET=
4362
AWS_USE_PATH_STYLE_ENDPOINT=false
4463

45-
PUSHER_APP_ID=
46-
PUSHER_APP_KEY=
47-
PUSHER_APP_SECRET=
48-
PUSHER_APP_CLUSTER=mt1
49-
50-
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
51-
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
64+
VITE_APP_NAME="${APP_NAME}"

.gitattributes

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
* text=auto
2-
*.css linguist-vendored
3-
*.scss linguist-vendored
4-
*.js linguist-vendored
1+
* text=auto eol=lf
2+
3+
*.blade.php diff=html
4+
*.css diff=css
5+
*.html diff=html
6+
*.md diff=markdown
7+
*.php diff=php
8+
9+
/.github export-ignore
510
CHANGELOG.md export-ignore
11+
.styleci.yml export-ignore

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1+
/.phpunit.cache
12
/node_modules
3+
/public/build
24
/public/hot
35
/public/storage
46
/storage/*.key
57
/vendor
68
.env
79
.env.backup
10+
.env.production
11+
.phpactor.json
812
.phpunit.result.cache
9-
docker-compose.override.yml
1013
Homestead.json
1114
Homestead.yaml
15+
auth.json
1216
npm-debug.log
1317
yarn-error.log
18+
/.fleet
1419
/.idea
1520
/.vscode

.styleci.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 58 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,66 @@
1-
# Laravel apps getting started
1+
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
22

3-
Example of how deploy a simple Laravel project on [liara](https://liara.ir).
3+
<p align="center">
4+
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
5+
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
6+
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
7+
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
8+
</p>
49

5-
## Deploying
10+
## About Laravel
611

7-
[Create New Laravel App](https://console.liara.ir/apps/create) & install the [Liara CLI](https://docs.liara.ir/cli/install)
12+
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
813

9-
```bash
10-
$ git clone https://github.com/liara-cloud/laravel-getting-started # or clone your own fork
14+
- [Simple, fast routing engine](https://laravel.com/docs/routing).
15+
- [Powerful dependency injection container](https://laravel.com/docs/container).
16+
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
17+
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
18+
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
19+
- [Robust background job processing](https://laravel.com/docs/queues).
20+
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
1121

12-
$ cd laravel-getting-started
22+
Laravel is accessible, powerful, and provides tools required for large, robust applications.
1323

14-
$ liara deploy
15-
```
16-
## Availabe Branches
24+
## Learning Laravel
1725

18-
1. [Adding liara.json file](https://github.com/liara-cloud/laravel-getting-started/tree/liaraJson)
19-
2. [Disk setup](https://github.com/liara-cloud/laravel-getting-started/tree/diskSetup)
20-
3. [php.ini customization](https://github.com/liara-cloud/laravel-getting-started/tree/phpini)
21-
4. [Object Storage In Liara](https://github.com/liara-cloud/laravel-getting-started/tree/object-storage)
22-
5. [Email Server In Liara](https://github.com/liara-cloud/laravel-getting-started/tree/email-server)
23-
6. [Inertia.JS + SSR](https://github.com/liara-cloud/laravel-getting-started/tree/inertiajs-ssr)
24-
7. [Laravel Social Media](https://github.com/liara-cloud/laravel-getting-started/tree/laravel-social-media)
26+
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
2527

26-
## Documentation
27-
Read more on liara [Laravel apps documentation](https://docs.liara.ir/app-deploy/laravel/getting-started)
28+
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
29+
30+
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
31+
32+
## Laravel Sponsors
33+
34+
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
35+
36+
### Premium Partners
37+
38+
- **[Vehikl](https://vehikl.com/)**
39+
- **[Tighten Co.](https://tighten.co)**
40+
- **[WebReinvent](https://webreinvent.com/)**
41+
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
42+
- **[64 Robots](https://64robots.com)**
43+
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
44+
- **[Cyber-Duck](https://cyber-duck.co.uk)**
45+
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
46+
- **[Jump24](https://jump24.co.uk)**
47+
- **[Redberry](https://redberry.international/laravel/)**
48+
- **[Active Logic](https://activelogic.com)**
49+
- **[byte5](https://byte5.de)**
50+
- **[OP.GG](https://op.gg)**
51+
52+
## Contributing
53+
54+
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
55+
56+
## Code of Conduct
57+
58+
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
59+
60+
## Security Vulnerabilities
61+
62+
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed.
63+
64+
## License
65+
66+
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

app/Console/Kernel.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

app/Exceptions/Handler.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

app/Http/Controllers/Controller.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
namespace App\Http\Controllers;
44

5-
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
6-
use Illuminate\Foundation\Bus\DispatchesJobs;
7-
use Illuminate\Foundation\Validation\ValidatesRequests;
8-
use Illuminate\Routing\Controller as BaseController;
9-
10-
class Controller extends BaseController
5+
abstract class Controller
116
{
12-
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
7+
//
138
}

0 commit comments

Comments
 (0)