Skip to content

Commit 3a5f896

Browse files
committed
Update to main codeigniter4 organization
1 parent 40f121a commit 3a5f896

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ config classes.
55

66
## Quick Start
77

8-
1. Install with Composer: `> composer require codeigniter4projects/settings`
8+
1. Install with Composer: `> composer require codeigniter4/settings`
99
2. Create a new migration and copy the provided class from below into it.
1010

1111
`Settings` provides a simple interface that you can use in place of calling `config()` to allow you to read and store
@@ -19,7 +19,7 @@ and still allows your users to override those settings once the site is live.
1919

2020
Install easily via Composer to take advantage of CodeIgniter 4's autoloading capabilities
2121
and always be up-to-date:
22-
* `> composer require codeigniter4projects/settings`
22+
* `> composer require codeigniter4/settings`
2323

2424
Or, install manually by downloading the source files and adding the directory to
2525
`app/Config/Autoload.php`.

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "codeigniter4projects/settings",
2+
"name": "codeigniter4/settings",
33
"type": "library",
44
"description": "Settings library for CodeIgniter 4",
55
"keywords": [
66
"codeigniter",
77
"codeigniter4",
88
"settings"
99
],
10-
"homepage": "https://github.com/codeigniter4projects/settings",
10+
"homepage": "https://github.com/codeigniter4/settings",
1111
"license": "MIT",
1212
"authors": [
1313
{
@@ -30,13 +30,12 @@
3030
},
3131
"autoload": {
3232
"psr-4": {
33-
"Sparks\\Settings\\": "src",
34-
"Tests\\": "tests",
35-
"Tests\\Support\\": "tests/_support"
33+
"Sparks\\Settings\\": "src"
3634
}
3735
},
3836
"autoload-dev": {
3937
"psr-4": {
38+
"Tests\\": "tests",
4039
"Tests\\Support\\": "tests/_support"
4140
}
4241
},

0 commit comments

Comments
 (0)