Skip to content

Commit cc1a820

Browse files
MaxianEdisonMaxianEdison
authored andcommitted
make template
1 parent 299202c commit cc1a820

File tree

7,218 files changed

+891357
-0
lines changed

Some content is hidden

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

7,218 files changed

+891357
-0
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
17+
[docker-compose.yml]
18+
indent_size = 4

.env

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=base64:dgiSeGyZXg9muGrrel4/c8xq44HckxhYYK+4ZYPoj9w=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
LOG_CHANNEL=stack
8+
LOG_DEPRECATIONS_CHANNEL=null
9+
LOG_LEVEL=debug
10+
11+
DB_CONNECTION=mysql
12+
DB_HOST=127.0.0.1
13+
DB_PORT=3306
14+
DB_DATABASE=laravel
15+
DB_USERNAME=root
16+
DB_PASSWORD=root
17+
18+
BROADCAST_DRIVER=log
19+
CACHE_DRIVER=file
20+
FILESYSTEM_DISK=local
21+
QUEUE_CONNECTION=sync
22+
SESSION_DRIVER=file
23+
SESSION_LIFETIME=120
24+
25+
MEMCACHED_HOST=127.0.0.1
26+
27+
REDIS_HOST=127.0.0.1
28+
REDIS_PASSWORD=null
29+
REDIS_PORT=6379
30+
31+
MAIL_MAILER=smtp
32+
MAIL_HOST=mailhog
33+
MAIL_PORT=1025
34+
MAIL_USERNAME=null
35+
MAIL_PASSWORD=null
36+
MAIL_ENCRYPTION=null
37+
MAIL_FROM_ADDRESS="hello@example.com"
38+
MAIL_FROM_NAME="${APP_NAME}"
39+
40+
AWS_ACCESS_KEY_ID=
41+
AWS_SECRET_ACCESS_KEY=
42+
AWS_DEFAULT_REGION=us-east-1
43+
AWS_BUCKET=
44+
AWS_USE_PATH_STYLE_ENDPOINT=false
45+
46+
PUSHER_APP_ID=
47+
PUSHER_APP_KEY=
48+
PUSHER_APP_SECRET=
49+
PUSHER_HOST=
50+
PUSHER_PORT=443
51+
PUSHER_SCHEME=https
52+
PUSHER_APP_CLUSTER=mt1
53+
54+
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55+
VITE_PUSHER_HOST="${PUSHER_HOST}"
56+
VITE_PUSHER_PORT="${PUSHER_PORT}"
57+
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
58+
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.env.example

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
LOG_CHANNEL=stack
8+
LOG_DEPRECATIONS_CHANNEL=null
9+
LOG_LEVEL=debug
10+
11+
DB_CONNECTION=mysql
12+
DB_HOST=127.0.0.1
13+
DB_PORT=3306
14+
DB_DATABASE=laravel
15+
DB_USERNAME=root
16+
DB_PASSWORD=
17+
18+
BROADCAST_DRIVER=log
19+
CACHE_DRIVER=file
20+
FILESYSTEM_DISK=local
21+
QUEUE_CONNECTION=sync
22+
SESSION_DRIVER=file
23+
SESSION_LIFETIME=120
24+
25+
MEMCACHED_HOST=127.0.0.1
26+
27+
REDIS_HOST=127.0.0.1
28+
REDIS_PASSWORD=null
29+
REDIS_PORT=6379
30+
31+
MAIL_MAILER=smtp
32+
MAIL_HOST=mailhog
33+
MAIL_PORT=1025
34+
MAIL_USERNAME=null
35+
MAIL_PASSWORD=null
36+
MAIL_ENCRYPTION=null
37+
MAIL_FROM_ADDRESS="hello@example.com"
38+
MAIL_FROM_NAME="${APP_NAME}"
39+
40+
AWS_ACCESS_KEY_ID=
41+
AWS_SECRET_ACCESS_KEY=
42+
AWS_DEFAULT_REGION=us-east-1
43+
AWS_BUCKET=
44+
AWS_USE_PATH_STYLE_ENDPOINT=false
45+
46+
PUSHER_APP_ID=
47+
PUSHER_APP_KEY=
48+
PUSHER_APP_SECRET=
49+
PUSHER_HOST=
50+
PUSHER_PORT=443
51+
PUSHER_SCHEME=https
52+
PUSHER_APP_CLUSTER=mt1
53+
54+
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55+
VITE_PUSHER_HOST="${PUSHER_HOST}"
56+
VITE_PUSHER_PORT="${PUSHER_PORT}"
57+
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
58+
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* text=auto
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
10+
CHANGELOG.md export-ignore
11+
.styleci.yml export-ignore

.styleci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- no_unused_imports
5+
finder:
6+
not-name:
7+
- index.php
8+
js: true
9+
css: true

CHANGELOG.md

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
# Release Notes
2+
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v9.3.12...9.x)
4+
5+
## [v9.3.12](https://github.com/laravel/laravel/compare/v9.3.11...v9.3.12) - 2022-11-22
6+
7+
### Changed
8+
9+
- Bump vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/6038
10+
11+
## [v9.3.11](https://github.com/laravel/laravel/compare/v9.3.10...v9.3.11) - 2022-11-14
12+
13+
### Changed
14+
15+
- Adds lowercase validation rule translation by @timacdonald in https://github.com/laravel/laravel/pull/6028
16+
- Adds uppercase validation rule translation by @michaelnabil230 in https://github.com/laravel/laravel/pull/6029
17+
18+
## [v9.3.10](https://github.com/laravel/laravel/compare/v9.3.9...v9.3.10) - 2022-10-28
19+
20+
### Changed
21+
22+
- Changing .env to make Pusher work without editing the commented out part in the bootstrap.js by @cveldman in https://github.com/laravel/laravel/pull/6021
23+
24+
## [v9.3.9](https://github.com/laravel/laravel/compare/v9.3.8...v9.3.9) - 2022-10-17
25+
26+
### Changed
27+
28+
- Update welcome page colours by @timacdonald in https://github.com/laravel/laravel/pull/6002
29+
- Ignore .env.production by @yasapurnama in https://github.com/laravel/laravel/pull/6004
30+
- Upgrade axios to v1.x by @ankurk91 in https://github.com/laravel/laravel/pull/6008
31+
- Shorten pusher host config by @buihanh2304 in https://github.com/laravel/laravel/pull/6009
32+
33+
## [v9.3.8](https://github.com/laravel/laravel/compare/v9.3.7...v9.3.8) - 2022-09-20
34+
35+
### Changed
36+
37+
- Validation added `required_if_accepted` by @luisprmat in https://github.com/laravel/laravel/pull/5987
38+
39+
## [v9.3.7](https://github.com/laravel/laravel/compare/v9.3.6...v9.3.7) - 2022-09-02
40+
41+
### Changed
42+
43+
- Make email unique by @martin-ro in https://github.com/laravel/laravel/pull/5978
44+
45+
## [v9.3.6](https://github.com/laravel/laravel/compare/v9.3.5...v9.3.6) - 2022-08-29
46+
47+
### Changed
48+
49+
- Bump Vite plugin version by @timacdonald in https://github.com/laravel/laravel/pull/5977
50+
51+
## [v9.3.5](https://github.com/laravel/laravel/compare/v9.3.4...v9.3.5) - 2022-08-22
52+
53+
### Changed
54+
55+
- `max_digits` and `min_digits` validation translations by @danharrin in https://github.com/laravel/laravel/pull/5975
56+
- Use short closure by @taylorotwell in https://github.com/laravel/laravel/commit/7b17f5f32623c2ee75f2bff57a42bb8f180ac779
57+
- Use except by @taylorotwell in https://github.com/laravel/laravel/commit/e2e25f607a894427d6545f611ad3c8d94d022e9d
58+
59+
## [v9.3.4](https://github.com/laravel/laravel/compare/v9.3.3...v9.3.4) - 2022-08-15
60+
61+
### Changed
62+
63+
- Add ValidateSignature middleware for ignore params by @valorin in https://github.com/laravel/laravel/pull/5942
64+
65+
## [v9.3.3](https://github.com/laravel/laravel/compare/v9.3.2...v9.3.3) - 2022-08-03
66+
67+
### Changed
68+
69+
- Validation added `doesnt_end_with` translation by @kichetof in https://github.com/laravel/laravel/pull/5962
70+
71+
## [v9.3.2](https://github.com/laravel/laravel/compare/v9.3.1...v9.3.2) - 2022-08-01
72+
73+
### Changed
74+
75+
- Update Sanctum by @suyar in https://github.com/laravel/laravel/pull/5957
76+
- Allow Pest plugin in Composer by @driesvints in https://github.com/laravel/laravel/pull/5959
77+
78+
## [v9.3.1](https://github.com/laravel/laravel/compare/v9.3.0...v9.3.1) - 2022-07-26
79+
80+
### Changed
81+
82+
- Update font delivery by @abenerd in https://github.com/laravel/laravel/pull/5952
83+
- Don't need to ignore vite config file by @GrahamCampbell in https://github.com/laravel/laravel/pull/5953
84+
85+
## [v9.3.0](https://github.com/laravel/laravel/compare/v9.2.1...v9.3.0) - 2022-07-20
86+
87+
### Added
88+
89+
- Uses `laravel/pint` for styling by @nunomaduro in https://github.com/laravel/laravel/pull/5945
90+
91+
### Changed
92+
93+
- Bump axios version by @ankurk91 in https://github.com/laravel/laravel/pull/5946
94+
- Vite 3 support by @timacdonald in https://github.com/laravel/laravel/pull/5944
95+
96+
## [v9.2.1](https://github.com/laravel/laravel/compare/v9.2.0...v9.2.1) - 2022-07-13
97+
98+
### Changed
99+
100+
- Add auth.json to skeleton by @driesvints in https://github.com/laravel/laravel/pull/5924
101+
- Update `bootstrap.js` by @irsyadadl in https://github.com/laravel/laravel/pull/5929
102+
- Add default reloading to skeleton by @timacdonald in https://github.com/laravel/laravel/pull/5927
103+
- Update to the latest version of laravel-vite-plugin by @jessarcher in https://github.com/laravel/laravel/pull/5943
104+
105+
## [v9.2.0](https://github.com/laravel/laravel/compare/v9.1.10...v9.2.0) - 2022-06-28
106+
107+
### Added
108+
109+
- Vite by @jessarcher in https://github.com/laravel/laravel/pull/5904
110+
- Added support for easy development configuration in bootstrap.js by @rennokki in https://github.com/laravel/laravel/pull/5900
111+
112+
### Changed
113+
114+
- Sorted entries in the `en` validation translations file by @FaridAghili in https://github.com/laravel/laravel/pull/5899
115+
116+
## [v9.1.10](https://github.com/laravel/laravel/compare/v9.1.9...v9.1.10) - 2022-06-07
117+
118+
### Changed
119+
120+
- Add language line by @taylorotwell in https://github.com/laravel/laravel/commit/b084aacc5ad105e39c2b058e9523e73655be8d1f
121+
- Improve Pusher configuration for easy development by @oanhnn in https://github.com/laravel/laravel/pull/5897
122+
123+
## [v9.1.9](https://github.com/laravel/laravel/compare/v9.1.8...v9.1.9) - 2022-05-28
124+
125+
### Changed
126+
127+
- Switch to ESM imports by @jessarcher in https://github.com/laravel/laravel/pull/5895
128+
129+
## [v9.1.8](https://github.com/laravel/laravel/compare/v9.1.7...v9.1.8) - 2022-05-05
130+
131+
### Changed
132+
133+
- Add local_domain option to smtp configuration by @bintzandt in https://github.com/laravel/laravel/pull/5877
134+
- Add specific test user in seeder by @driesvints in https://github.com/laravel/laravel/pull/5879
135+
136+
## [v9.1.7](https://github.com/laravel/laravel/compare/v9.1.6...v9.1.7) - 2022-05-03
137+
138+
### Changed
139+
140+
- Deprecation log stack trace option by @driesvints in https://github.com/laravel/laravel/pull/5874
141+
142+
## [v9.1.6](https://github.com/laravel/laravel/compare/v9.1.5...v9.1.6) - 2022-04-20
143+
144+
### Changed
145+
146+
- Move password lines into main translation file by @taylorotwell in https://github.com/laravel/laravel/commit/db0d052ece1c17c506633f4c9f5604b65e1cc3a4
147+
- Add missing maintenance to config by @ibrunotome in https://github.com/laravel/laravel/pull/5868
148+
149+
## [v9.1.5](https://github.com/laravel/laravel/compare/v9.1.4...v9.1.5) - 2022-04-12
150+
151+
### Changed
152+
153+
- Rearrange route methods by @osbre in https://github.com/laravel/laravel/pull/5862
154+
- Add levels to handler by @taylorotwell in https://github.com/laravel/laravel/commit/a507e1424339633ce423729ec0ac49b99f0e57d7
155+
156+
## [v9.1.4](https://github.com/laravel/laravel/compare/v9.1.3...v9.1.4) - 2022-03-29
157+
158+
### Changed
159+
160+
- Add encryption configuration by @taylorotwell in https://github.com/laravel/laravel/commit/f7b982ebdf7bd31eda9f05f901bd92ed32446156
161+
162+
## [v9.1.3](https://github.com/laravel/laravel/compare/v9.1.2...v9.1.3) - 2022-03-29
163+
164+
### Changed
165+
166+
- Add an example to the class aliases by @nshiro in https://github.com/laravel/laravel/pull/5846
167+
- Add username in config to use with phpredis + ACL by @neoteknic in https://github.com/laravel/laravel/pull/5851
168+
- Remove "password" from validation lang by @mnastalski in https://github.com/laravel/laravel/pull/5856
169+
- Make authenticate session a route middleware by @taylorotwell in https://github.com/laravel/laravel/pull/5842
170+
171+
## [v9.1.2](https://github.com/laravel/laravel/compare/v9.1.1...v9.1.2) - 2022-03-15
172+
173+
### Changed
174+
175+
- The docker-compose.override.yml should not be ignored by default by @dakira in https://github.com/laravel/laravel/pull/5838
176+
177+
## [v9.1.1](https://github.com/laravel/laravel/compare/v9.1.0...v9.1.1) - 2022-03-08
178+
179+
### Changed
180+
181+
- Add option to configure Mailgun transporter scheme by @jnoordsij in https://github.com/laravel/laravel/pull/5831
182+
- Add `throw` to filesystems config by @ankurk91 in https://github.com/laravel/laravel/pull/5835
183+
184+
### Fixed
185+
186+
- Small typo fix in filesystems.php by @tooshay in https://github.com/laravel/laravel/pull/5827
187+
- Update sendmail default params by @driesvints in https://github.com/laravel/laravel/pull/5836
188+
189+
## [v9.1.0](https://github.com/laravel/laravel/compare/v9.0.1...v9.1.0) - 2022-02-22
190+
191+
### Changed
192+
193+
- Remove namespace from Routes by @emargareten in https://github.com/laravel/laravel/pull/5818
194+
- Update sanctum config file by @suyar in https://github.com/laravel/laravel/pull/5820
195+
- Replace Laravel CORS package by @driesvints in https://github.com/laravel/laravel/pull/5825
196+
197+
## [v9.0.1](https://github.com/laravel/laravel/compare/v9.0.0...v9.0.1) - 2022-02-15
198+
199+
### Changed
200+
201+
- Improve typing on user factory by @axlon in https://github.com/laravel/laravel/pull/5806
202+
- Align min PHP version with docs by @u01jmg3 in https://github.com/laravel/laravel/pull/5807
203+
- Remove redundant `null`s by @felixdorn in https://github.com/laravel/laravel/pull/5811
204+
- Remove default commented namespace by @driesvints in https://github.com/laravel/laravel/pull/5816
205+
- Add underscore to prefix in database cache key by @m4tlch in https://github.com/laravel/laravel/pull/5817
206+
207+
### Fixed
208+
209+
- Fix lang alphabetical order by @shuvroroy in https://github.com/laravel/laravel/pull/5812
210+
211+
## [v9.0.0 (2022-02-08)](https://github.com/laravel/laravel/compare/v8.6.11...v9.0.0)
212+
213+
Laravel 9 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.

0 commit comments

Comments
 (0)