Commit 346c00e7 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

chore: update CI to v4.6.3 + all php and js dependencies

parent 96b2df15
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ writable/uploads/*
!writable/uploads/index.html

writable/debugbar/*
!writable/debugbar/.gitkeep
!writable/debugbar/index.html

php_errors.log

@@ -107,15 +107,15 @@ _modules/*
.idea/
*.iml

# Netbeans
nbproject/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/
# NetBeans
/nbproject/
/build/
/nbbuild/
/dist/
/nbdist/
/nbactions.xml
/nb-configuration.xml
/.nb-gradle/

# Sublime Text
*.tmlanguage.cache
+0 −3
Original line number Diff line number Diff line
@@ -146,12 +146,10 @@ To see your changes, go to:

- `http://localhost:8080/` for the Castopod website
- `http://localhost:8080/cp-admin` for the Castopod admin:

  - email: **admin@castopod.local**
  - password: **castopod**

- `http://localhost:8888/` for the phpmyadmin interface:

  - username: **castopod**
  - password: **castopod**

@@ -294,7 +292,6 @@ You do not wish to use the VSCode devcontainer? No problem!
   ```

3. (optional) Populate the database with test data:

   - Populate with fake podcast analytics:

   ```bash
+0 −2
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@ use CodeIgniter\Config\AutoloadConfig;
 *
 * NOTE: If you use an identical key in $psr4 or $classmap, then
 * the values in this file will overwrite the framework's values.
 *
 * @immutable
 */
class Autoload extends AutoloadConfig
{
+3 −3
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ class Cache extends BaseConfig
     * Your file storage preferences can be specified below, if you are using
     * the File driver.
     *
     * @var array<string, string|int|null>
     * @var array{storePath?: string, mode?: int}
     */
    public array $file = [
        'storePath' => WRITEPATH . 'cache/',
@@ -97,7 +97,7 @@ class Cache extends BaseConfig
     *
     * @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
     *
     * @var array<string, string|int|bool>
     * @var array{host?: string, port?: int, weight?: int, raw?: bool}
     */
    public array $memcached = [
        'host'   => '127.0.0.1',
@@ -113,7 +113,7 @@ class Cache extends BaseConfig
     * Your Redis server can be specified below, if you are using
     * the Redis or Predis drivers.
     *
     * @var array<string, string|int|null>
     * @var array{host?: string, password?: string|null, port?: int, timeout?: int, database?: int}
     */
    public array $redis = [
        'host'     => '127.0.0.1',
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ class Cookie extends BaseConfig
     * (empty string) means default SameSite attribute set by browsers (`Lax`)
     * will be set on cookies. If set to `None`, `$secure` must also be set.
     *
     * @phpstan-var 'None'|'Lax'|'Strict'|''
     * @var ''|'Lax'|'None'|'Strict'
     */
    public string $samesite = 'Lax';

Loading