• v1.26.0 c0fa37d697

    v1.26.0 Stable

    deblan released this 2025-03-17 11:12:23 +01:00 | 0 commits to master since this release

    Changed

    • upgrade murph/murph-core
    Downloads
  • v1.25.1 63bc4cde1c

    v1.25.1 Stable

    deblan released this 2024-05-13 17:56:19 +02:00 | 4 commits to master since this release

    Fixed

    • fix murph-npm version
    Downloads
  • v1.25.0 ebbb4c01e0

    v1.25.0 Stable

    deblan released this 2024-05-12 22:55:11 +02:00 | 7 commits to master since this release

    Changed

    • upgrade murph/murph-core

    Upgrade

    Update src/Kernel.php by adding:

    use App\Core\DependencyInjection\Compiler\BuilderBlockPass;
    use Symfony\Component\DependencyInjection\ContainerBuilder;
    

    And

        protected function build(ContainerBuilder $container): void
        {
            $container->addCompilerPass(new BuilderBlockPass());
        }
    
    Downloads
  • v1.23.0 c00723a246

    v1.23.0 Stable

    deblan released this 2023-11-01 16:35:12 +01:00 | 14 commits to master since this release

    Changed

    • upgrade murph/murph-core
    Downloads
  • v1.22.0 ba76a83163

    v1.22.0 Stable

    deblan released this 2023-09-28 18:15:45 +02:00 | 18 commits to master since this release

    Added

    • update woodpecker ci base file

    Fixed

    • fix #1: add UniqueEntity constraint in the User entity

    Changed

    • upgrade murph/murph-core
    Downloads
  • v1.21.0 2dfe6ef1ca

    v1.21.0 Stable

    deblan released this 2023-08-11 09:50:15 +02:00 | 23 commits to master since this release

    Changed

    • upgrade murph/murph-core
    Downloads
  • v1.20.0 8432fc123e

    v1.20.0 Stable

    deblan released this 2023-07-27 18:20:36 +02:00 | 25 commits to master since this release

    Fixed

    • fix collection widget: allow_add/allow_delete and prototype

    Added

    • add user admin controller and simples views in default files
    • add chdir in the console entrypoint

    Changed

    • upgrade murph/murph-core

    Upgrade

    Downloads
  • v1.19.0 9d8d6b510a

    v1.19.0 Stable

    deblan released this 2023-04-15 10:53:52 +02:00 | 32 commits to master since this release

    Changed

    • upgrade murph/murph-core
    Downloads
  • v1.18.0 39e92e949a

    v1.18.0 Stable

    deblan released this 2023-01-13 18:29:40 +01:00 | 36 commits to master since this release

    Added

    • feat(update): update dependencies
    • feat(update): apply new recipe for phpunit
    • feat(update): apply recipes:update doctrine/doctrine-bundle
    • feat(update): apply recipes:update doctrine/doctrine-migrations-bundle
    • feat(update): apply recipes:update liip/imagine-bundle
    • feat(update): apply recipes:update stof/doctrine-extensions-bundle
    • feat(update): apply recipes:update symfony/apache-pack
    • feat(update): apply recipes:update symfony/console
    • feat(update): apply recipes:update symfony/debug-bundle
    • feat(update): apply recipes:update symfony/flex
    • feat(update): apply recipes:update symfony/mailer
    • feat(update): apply recipes:update symfony/framework-bundle
    • feat(update): apply recipes:update symfony/monolog-bundle
    • feat(update): apply recipes:update symfony/routing
    • feat(update): apply recipes:update symfony/security-bundle
    • feat(update): apply recipes:update symfony/translation
    • feat(update): apply recipes:update symfony/twig-bundle
    • feat(update): apply recipes:update symfony/validator
    • feat(update): apply recipes:update symfony/web-profiler-bundle
    • feat(update): apply recipes:update symfony/webpack-encore-bundle
    • feat(update): apply recipes:update scheb/2fa-bundle

    Fixed

    • fix(config): fix typo in 2fa conf
    • fix(config): fix firewall config
    Downloads
  • v1.17.0 75a29b6372

    v1.17.0 Stable

    deblan released this 2022-11-19 20:38:13 +01:00 | 66 commits to master since this release

    Changed

    • upgrade murph/murph-core
    • replace annotation with attributes
    • use encore from node_modules in npm scripts

    Upgrade

    Replace all annotations with PHP8 attributes and change the doctrine configuration:

    # config/packages/doctrine.yaml
    doctrine:
        ...
        orm:
            ...
            mappings:
                App\Core\Entity:
                    type: attribute
                    ...
                App\Entity:
                    type: attribute
                    ...
    
    Downloads