pictastudio/contento
Composer 安装命令:
composer require pictastudio/contento
包简介
cms library to manage dynamic content
README 文档
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
composer require pictastudio/contento
You can publish and run the migrations with:
php artisan vendor:publish --tag="contento-migrations"
php artisan migrate
If you are upgrading from an earlier release, publish the latest package migrations again before running php artisan migrate. Recent upgrades add the menu_items.path, menu_items.sort_order, and faqs.sort_order columns through package migrations.
You can publish the config file with:
php artisan vendor:publish --tag="contento-config"
This is the contents of the published config file:
return [ 'authorize_using_policies' => env('CONTENTO_AUTHORIZE_USING_POLICIES', true), 'models' => [ 'page' => \PictaStudio\Contento\Models\Page::class, 'faq_category' => \PictaStudio\Contento\Models\FaqCategory::class, 'faq' => \PictaStudio\Contento\Models\Faq::class, 'mail_form' => \PictaStudio\Contento\Models\MailForm::class, 'modal' => \PictaStudio\Contento\Models\Modal::class, 'content_tag' => \PictaStudio\Contento\Models\ContentTag::class, 'setting' => \PictaStudio\Contento\Models\Setting::class, ], 'table_names' => [ 'pages' => 'pages', 'faq_categories' => 'faq_categories', 'faqs' => 'faqs', 'mail_forms' => 'mail_forms', 'modals' => 'modals', 'content_tags' => 'content_tags', 'content_taggables' => 'content_taggables', 'settings' => 'settings', ], 'routes' => [ 'api' => [ 'v1' => [ 'prefix' => 'api/contento/v1', 'name' => 'api.contento.v1', 'middleware' => ['api'], 'pagination' => [ 'per_page' => 15, 'max_per_page' => 100, ], ], 'enable' => true, 'json_resource_enable_wrapping' => true, ], ], ];
Usage
This package provides a headless CMS API. Once installed and migrated, you can access the following endpoints:
GET /api/contento/v1/pages- List all pagesGET /api/contento/v1/pages/{id_or_slug}- Get a single pageGET /api/contento/v1/menus- List menusGET /api/contento/v1/menus/{id_or_slug}- Get a single menuGET /api/contento/v1/menu-items- List menu itemsGET /api/contento/v1/menu-items/{id_or_slug}- Get a single menu itemPOST /api/contento/v1/menu-items/bulk/upsert- Create and update menu items in a single requestGET /api/contento/v1/faq-categories- List FAQ categories with questionsPOST /api/contento/v1/faqs/bulk/upsert- Create and update FAQs in a single requestGET /api/contento/v1/settings- List all settings (always non-paginated)POST /api/contento/v1/settings/bulk/update- Create and update settings in a single request
All endpoints return JSON responses using Laravel API Resources.
Pages accept a nullable metadata object for structured page metadata such as SEO fields.
Pages support include=content_tags on list and show endpoints to return associated content tags.
Common list query parameters
Most index endpoints support:
pageper_pagesort_bysort_direxclude_all_scopesexclude_active_scopeexclude_date_range_scope
Pages also support exclude_published_scope.
Menus, modals, and content tags also support all=1 or filter=all to return every matching record as a non-paginated collection while skipping their implicit active and visibility date-range scopes.
Menu query parameters
GET /api/contento/v1/menus supports:
id[]titleslugactiveoris_activevisible_date_from,visible_date_from_start,visible_date_from_endvisible_date_to,visible_date_to_start,visible_date_to_endcreated_at_start,created_at_endupdated_at_start,updated_at_endinclude=items
Menu item query parameters
GET /api/contento/v1/menu-items supports:
id[]menu_idparent_idtitlesluglinkactiveoris_activevisible_date_from,visible_date_from_start,visible_date_from_endvisible_date_to,visible_date_to_start,visible_date_to_endcreated_at_start,created_at_endupdated_at_start,updated_at_endas_tree=1include=menu,parent,children
Menu items and content tags use branch-scoped sort_order values for tree ordering. Tree responses order root nodes by sort_order, and each child branch starts numbering from 1 again.
DELETE /api/contento/v1/menu-items/{menuItem} preserves descendants by default: direct children move to the deleted item's parent and paths are rebuilt recursively. Add delete_children=1 to recursively delete the target item and every descendant.
DELETE /api/contento/v1/content-tags/{contentTag} uses the same tree delete behavior. Recursive content tag deletes also clear tag associations for every deleted tag.
Authorization
Policy authorization is optional and follows host app policy registration.
Register policies in your app and keep contento.authorize_using_policies enabled:
use App\Models\Page; use App\Policies\PagePolicy; use Illuminate\Support\Facades\Gate; public function boot(): void { Gate::policy(Page::class, PagePolicy::class); }
Controllers check authorization only when:
contento.authorize_using_policiesistrue- there is an authenticated user
- a matching gate/policy definition exists
Testing
The package uses Pest for testing. You can run the tests using:
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
pictastudio/contento 适用场景与选型建议
pictastudio/contento 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 63 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「Picta Studio」 「contento」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pictastudio/contento 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pictastudio/contento 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pictastudio/contento 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Fork of botman/studio-addons to be used with PHP 8 and Laravel 9. BotMan Studio specific addons.
A Laravel package to manage your cron jobs through a beautiful dashboard (fork with categories and ping urls)
Alfabank REST API integration
BotMan Studio specific addons.
ecommerce package
Polymorphic translations for Laravel models
统计信息
- 总下载量: 63
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-25