You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,15 @@
2
2
##### xx january 2024
3
3
-__API__
4
4
- Upgraded Phpfastcache API to `4.3.0` ([see changes](CHANGELOG_API.md))
5
+
-__Extensions__ (💡 New in 9.2)
6
+
- Created an extension mechanism to allow future driver to be loaded independently, see [README.md](README.md)
7
+
- Created first extension for `Couchbasev4` support which will be moved to a [sub-repository](https://github.com/PHPSocialNetwork/couchbasev4-extension).
8
+
-**IMPORTANT**: *AS OF V10* the following drivers will be **MOVED** to their own sub-repositories an extension: `Arangodb`, `Couchdb`, `Cassandra`, `Dynamodb`, `Firestore`, `Mongodb`. However `Couchbasev3` will stay in the core for compatibility reason but will be deprecated.
5
9
-__Events__
6
10
- EventManager is now scoped to its own poll if retrieved through `ExtendedCacheItemPoolTrait::->getEventManager()`. Global EventManager `EventManager::getInstance()` remains unchanged, see [EVENTS.md](./docs/EVENTS.md).
7
-
-`EventManagerInterface::on()` now accepts a single `string $events` or an `array $events`.
11
+
-`EventManagerInterface::on()` now also accepts a single `string $events`.
8
12
- Alias `\Phpfastcache\PhpfastcacheEventManager` of `\Phpfastcache\EventManager` has been added to improve your code import readability.
13
+
- Deprecated `\Phpfastcache\Event\EventManagerDispatcherInterface::hasEventManager` to be removed for v10.
- Driver `Memstatic` has changed its name to `Memory` for more consistency.
@@ -17,6 +22,8 @@
17
22
- Internal: Implemented multiple keys fetch (*if supported by the backend*) to improve the performances behind all `getItems()` calls. Currently only supported in some backends, but it may evolve in the future.
18
23
- Internal: Implemented multiple keys delete (*if supported by the backend*) to improve the performances behind all `deleteItems()` calls. Currently only supported in some backends, but it may evolve in the future.
19
24
-`\Phpfastcache\CacheContract::get()` now accepts a `\Stringable $cacheKey` argument.
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Contributing to PhpFastCache
2
2
========================
3
3
4
4
Please note that this project is released with a
5
-
[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/).
5
+
[Contributor Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct/).
6
6
By participating in this project you agree to abide by its terms.
7
7
8
8
Reporting Issues
@@ -16,7 +16,7 @@ resolved in a timely manner.
16
16
Contributing policy
17
17
-------------------
18
18
19
-
Our contributing policy is described in our [Coding Guideline](https://github.com/PHPSocialNetwork/phpfastcache/blob/v7/CODING_GUIDELINE.md)
19
+
Our contributing policy is described in our [Coding Guideline](https://github.com/PHPSocialNetwork/phpfastcache/blob/master/CODING_GUIDELINE.md)
20
20
21
21
Developer notes
22
22
-------------------
@@ -26,7 +26,7 @@ To run tests follow the steps:
26
26
1) Run `./bin/ci/scripts/install_dependencies.sh`
27
27
2) Run `./vendor/bin/phpcs lib/ --report=summary`
28
28
3) Run `./vendor/bin/phpmd lib/ ansi phpmd.xml`
29
-
4) Run `./vendor/bin/phpstan analyse lib/ -l 2 -c phpstan_lite.neon 2>&1`
29
+
4) Run `./vendor/bin/phpstan analyse lib/ -c phpstan_lite.neon 2>&1`
30
30
5) Run `php -f ./bin/ci/run_tests.php`
31
31
32
32
If you are on Windows environment simply run the file `quality.bat` located at the root of the project to run the step 2, 3 and 4 in once.
@@ -35,4 +35,4 @@ The last command will run all the unit tests of the project.
35
35
If an error appears, fix it then you can submit your pull request.
36
36
37
37
Some tests will be skipped if you don't have special dependencies installed (Arangodb, Couchbase, Couchdb, Firestore credential and SDK, Dynamodb credential, etc.).\
38
-
So don't worry if those tests are skipped as long as they **pass** on the Github and Travis CIs.
38
+
So don't worry if those tests are skipped as long as they **pass** on the GitHub and Travis CIs.
0 commit comments