php-content/composer.json
Claude bd4837a46d
Some checks failed
CI / PHP 8.3 (push) Failing after 1m50s
CI / PHP 8.4 (push) Failing after 1m35s
test: fix TestCase to use Orchestra Testbench for CI
2026-02-23 06:18:30 +00:00

58 lines
1.2 KiB
JSON

{
"name": "host-uk/core-content",
"description": "Content management and headless CMS for Laravel",
"keywords": [
"laravel",
"content",
"cms",
"headless"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"host-uk/core": "dev-main",
"ezyang/htmlpurifier": "^4.17"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Core\\Mod\\Content\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mod\\Content\\Tests\\": "Tests/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Mod\\Content\\Boot"
]
}
},
"scripts": {
"lint": "pint",
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"name": "core",
"type": "path",
"url": "../php-framework"
}
]
}