Saaze / saaze

An all-inclusive, flat-file CMS for simple websites and blogs.
https://saaze.dev
MIT License
48 stars 6 forks source link

mimey package needs to be updated for php8 support #6

Open fg opened 2 years ago

fg commented 2 years ago

for those who want to try, I have published a version that works with php8. you can make a demo with the composer file below and edit according to your needs.


{
    "name": "saaze/saaze",
    "description": "An all-inclusive, flat-file CMS for simple websites and blogs",
    "type": "project",
    "license": "MIT",
    "authors": [
        {
            "name": "Gilbert Pellegrom",
            "email": "gilbert@pellegrom.me"
        }
    ],
    "require": {
        "saaze/core": "dev-develop"
    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/fg/saaze-core.git"
        },
        {
            "type": "vcs",
            "url": "https://github.com/fg/mimey.git"
        }
    ]
}

cheers 🍺