Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ composer.lock
.DS_Store
.idea/
.vscode/
docs/assets/__pycache__/
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2021 Lonnie Ezell
Copyright (c) 2021-present CodeIgniter Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 5 additions & 0 deletions docs/assets/hooks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from datetime import datetime

def on_config(config, **kwargs):
config.copyright = config.copyright.format(year=datetime.now().year)
return config
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ service('settings')->forget('App.siteName');
### Requirements

![PHP](https://img.shields.io/badge/PHP-%5E8.2-red)
![CodeIgniter](https://img.shields.io/badge/CodeIgniter-%5E4.2.3-red)
![CodeIgniter](https://img.shields.io/badge/CodeIgniter-%5E4.3-red)

### Acknowledgements

Expand Down
5 changes: 4 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ extra:
site_url: https://settings.codeigniter.com/
repo_url: https://github.com/codeigniter4/settings
edit_uri: edit/develop/docs/
copyright: Copyright © 2025 CodeIgniter Foundation.
copyright: Copyright © 2021-{year} CodeIgniter Foundation.

hooks:
- docs/assets/hooks.py

markdown_extensions:
- admonition
Expand Down