Commit 842c4e4b authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

parent d5ef2ab8
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. (optionnal) 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 −15
Original line number Diff line number Diff line
@@ -36,18 +36,6 @@ class Cache extends BaseConfig
     */
    public string $backupHandler = 'dummy';

    /**
     * --------------------------------------------------------------------------
     * Cache Directory Path
     * --------------------------------------------------------------------------
     *
     * The path to where cache files should be stored, if using a file-based
     * system.
     *
     * @deprecated Use the driver-specific variant under $file
     */
    public string $storePath = WRITEPATH . 'cache/';

    /**
     * --------------------------------------------------------------------------
     * Key Prefix
@@ -91,7 +79,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/',
@@ -107,7 +95,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',
@@ -123,7 +111,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',
+0 −15
Original line number Diff line number Diff line
@@ -91,18 +91,3 @@ defined('EXIT_USER_INPUT') || define('EXIT_USER_INPUT', 7); // invalid user inpu
defined('EXIT_DATABASE') || define('EXIT_DATABASE', 8); // database error
defined('EXIT__AUTO_MIN') || define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code

/**
 * @deprecated Use \CodeIgniter\Events\Events::PRIORITY_LOW instead.
 */
define('EVENT_PRIORITY_LOW', 200);

/**
 * @deprecated Use \CodeIgniter\Events\Events::PRIORITY_NORMAL instead.
 */
define('EVENT_PRIORITY_NORMAL', 100);

/**
 * @deprecated Use \CodeIgniter\Events\Events::PRIORITY_HIGH instead.
 */
define('EVENT_PRIORITY_HIGH', 10);
Loading