PHPackages                             antlur/phatsby-starter - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. antlur/phatsby-starter

Abandoned → [antlur/capo-starter](/?search=antlur%2Fcapo-starter)Library

antlur/phatsby-starter
======================

v0.6(2y ago)422JavaScript

Since Dec 2Pushed 2y ago1 watchersCompare

[ Source](https://github.com/capocode/starter)[ Packagist](https://packagist.org/packages/antlur/phatsby-starter)[ RSS](/packages/antlur-phatsby-starter/feed)WikiDiscussions main Synced yesterday

READMEChangelog (10)Dependencies (1)Versions (20)Used By (0)

Capo
====

[](#capo)

***Under heavy construction and might change at any time.***

Capo has the goal of making it easy to build websites with the power of Laravel but the simplicity of modern Javascript frameworks like Next.js or Nuxt.js.

Capo can be run as a standard server based application or as a static site generator.

Getting Started
---------------

[](#getting-started)

```
composer create-project capocode/starter [name]

npm i

npm run dev

composer run build
```

Routing
-------

[](#routing)

Routing can be done in two ways:

1. You can use the `routes.php` file to define routes and controllers [Laravel Docs](https://laravel.com/docs/10.x/routing).
2. You can use the `pages` directory to define routes and pages using [Laravel Folio](https://github.com/laravel/folio).

```
/pages
├── index.blade.php
├── about.blade.php
├── about (nested index also works)
│   └── index.blade.php
```

Dynamic Data during static site generation
------------------------------------------

[](#dynamic-data-during-static-site-generation)

When generating the static site, you can use the ExportPaths attribute to define which routes should be generated. This is useful when you have dynamic data that you want to generate static pages for. For example, if you have a blog and you want to generate static pages for each blog post, you can use the ExportPaths attribute to define which routes should be generated. The rest of your logic can be handled as if it was a normal Laravel application.

```
// routes.php
Route::get('/blog/{post}', [BlogController::class, 'show']);

// app/Http/Controllers/BlogController.php
use Capo\Attributes\ExportPaths;

class BlogController
{
    #[ExportPaths(BlogPostPaths::class)]
    public function show(string $name)
    {}
}

class BlogPostPaths implements \Capo\Services\Export\Interfaces\ExportPaths
{
    public function paths(): array
    {
        return [
            '/blog/first-post',
            '/blog/second-post',
        ];
    }
}
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~57 days

Recently: every ~105 days

Total

18

Last Release

1017d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/82a9fadc66ebfa83e57fae46f128df070657e7a14000170fb17d429ffaac5182?d=identicon)[anthonyholmes](/maintainers/anthonyholmes)

---

Top Contributors

[![anthonyholmes](https://avatars.githubusercontent.com/u/3069151?v=4)](https://github.com/anthonyholmes "anthonyholmes (101 commits)")

---

Tags

laravelphpstatic-site-generator

### Embed Badge

![Health badge](/badges/antlur-phatsby-starter/health.svg)

```
[![Health](https://phpackages.com/badges/antlur-phatsby-starter/health.svg)](https://phpackages.com/packages/antlur-phatsby-starter)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
