ro
7024285b70
the first part of the page editing API is working again after porting it over form the old fipamo build. a few changes where made to make the code a big more managable, but the end to end process works for updating pages. the remaining page editing methods will be activated after the rendering engine is in place because that's going to be a pretty siginficant effort. but this is a big step.
90 lines
2.7 KiB
JSON
90 lines
2.7 KiB
JSON
{
|
|
"name": "are0h/fipamo",
|
|
"type": "project",
|
|
"descriptions": "The most chill no database content framework ever.",
|
|
"version": "3.0.0-beta",
|
|
"keywords": ["fipamo","blog","activty-pub","laravel", "framework"],
|
|
"authors": [
|
|
{
|
|
"name": "Ro",
|
|
"homepage": "https://roiskinda.cool"
|
|
}
|
|
],
|
|
"support": {
|
|
"source": "https://koodu.h-i.works/projects/fipamo",
|
|
"wiki": "https://koodu.h-i.works/projects/fipamo/wiki/?action=_pages",
|
|
"issues": "https://koodu.h-i.works/projects/fipamo/issues"
|
|
},
|
|
"require": {
|
|
"php": "^8.1",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"laravel/framework": "^10.10",
|
|
"laravel/sanctum": "^3.3",
|
|
"laravel/tinker": "^2.8",
|
|
"league/commonmark": "^2.4",
|
|
"lodash-php/lodash-php": "^0.09.0",
|
|
"mindtwo/laravel-blade-spaceless": "^1.2",
|
|
"mnapoli/front-yaml": "^2.0",
|
|
"nesbot/carbon": "^2.72",
|
|
"olegatro/html-sanitizer-relative": "^1.0",
|
|
"rbdwllr/reallysimplejwt": "^5.0",
|
|
"symfony/yaml": "^7.0",
|
|
"tgalopin/html-sanitizer": "^1.5"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.9.1",
|
|
"laravel/pint": "^1.0",
|
|
"laravel/sail": "^1.18",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^7.0",
|
|
"phpunit/phpunit": "^10.1",
|
|
"spatie/laravel-ignition": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"start": [
|
|
"@php -S localhost:8000 -t public/"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|