PHPackages                             alcodo/alpaca - 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. [Framework](/categories/framework)
4. /
5. alcodo/alpaca

ActiveLibrary[Framework](/categories/framework)

alcodo/alpaca
=============

Simple laravel CMF system

64011PHP

Since Mar 8Pushed 6y ago1 watchersCompare

[ Source](https://github.com/alcodo/alpaca)[ Packagist](https://packagist.org/packages/alcodo/alpaca)[ RSS](/packages/alcodo-alpaca/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (11)Used By (0)

Package is under development!

[![](https://camo.githubusercontent.com/640c3d52b2764f179ef3cf089b604516a8c4ac0a06f055a46c6a7fce9428b787/68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e737667)](https://laravel.com)

[![Build Status](https://camo.githubusercontent.com/5e18a08469612de086b2787e910ba774a5f370c7c33a98d672533d3f30a7d7cc/68747470733a2f2f7472617669732d63692e6f72672f616c636f646f2f616c706163612e737667)](https://travis-ci.org/alcodo/alpaca)[![Total Downloads](https://camo.githubusercontent.com/4fb9fdedb9eab8e0bf3c2d61ad2b65c69bcc026ac5eeb3229f3ed53a4ed46f58/68747470733a2f2f706f7365722e707567782e6f72672f616c636f646f2f616c706163612f642f746f74616c2e737667)](https://packagist.org/packages/alcodo/alpaca)[![Latest Stable Version](https://camo.githubusercontent.com/033789915f804993ace7241cbf73974b3607be2503c0e1500cba80ed1925e59d/68747470733a2f2f706f7365722e707567782e6f72672f616c636f646f2f616c706163612f762f737461626c652e737667)](https://packagist.org/alcodo/alpaca/framework)[![License](https://camo.githubusercontent.com/ca34b633a0994b1b03930abb88b9a758aa03732493f51c33d12aff08db076b7e/68747470733a2f2f706f7365722e707567782e6f72672f616c636f646f2f616c706163612f6c6963656e73652e737667)](https://packagist.org/alcodo/alpaca/framework)

Alpaca
======

[](#alpaca)

Simple CMS System based on Laravel Framework.

Requirements:

- [Laravel Framework](https://github.com/laravel/laravel) ([Doc](https://laravel.com/docs/5.6))
- [Vue.js](https://github.com/vuejs/vue) ([Doc](https://vuejs.org/v2/guide/))
- [Bootstrap 4](https://github.com/twbs/bootstrap) ([Doc](https://getbootstrap.com/docs/4.0/))
- [BootstrapVue](https://github.com/bootstrap-vue/bootstrap-vue) ([Doc](https://bootstrap-vue.js.org/docs))
- [EmailChecker](https://github.com/MattKetmo/EmailChecker))

Why a new CMS system again?
---------------------------

[](#why-a-new-cms-system-again)

I'm just frustrated with the system that's on the market.

**Wordpress**: Security issues (security updates), Hook system for modules is a real challenge
**Drupal8**: Slow, Cache, Complex (Field data attributes)
**OctoberCMS**: Pages will saved as a file, PHP Code is complex, Twig template system

Installation
------------

[](#installation)

### Package

[](#package)

Install [laravel](https://laravel.com/docs/5.5/installation#installing-laravel)

```
laravel new blog
```

Install *alpaca* and dependecies

```
composer require alcodo/alpaca
```

Start create tables

```
php artisan migrate
```

Remove welcome route from

```
routes/web.php

Route::get('/', function () {
   return view('welcome');
});

```

### Template

[](#template)

Export the template:

```
php artisan vendor:publish --provider Alpaca\AlpacaServiceProvider

Add in resources/assets/js/app.js:
require('../../../vendor/alcodo/alpaca/resources/js/alpaca.js');

Add in resources/assets/sass/app.scss:
@import 'vendor/alcodo/alpaca/resources/sass/alpaca.scss';
```

Icons:

```
mkdir -p public/assets/icons
cp node_modules/trumbowyg/dist/ui/icons.svg public/assets/icons/
```

Add alpaca npm dependencies:

```
npm install file:./vendor/alcodo/alpaca/resources/js --save-dev
yarn or with npm install
```

### Extend auth logic

[](#extend-auth-logic)

Create laravel basic login and registration auth

```
php artisan make:auth
```

Copy translated auth blade template files. This files are automatic integrated with alpaca:

```
cp -r vendor/alcodo/alpaca/resources/views/auth/ resources/views/auth/
```

Add to your User model the permission trait:

```
use Alpaca\Traits\Permission;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable, Permission;
    ...
```

Try to login with:

```
email: admin@alpaca.com
password: alpaca

```

### Optional

[](#optional)

Add translation files for your language:

```
art alpaca:publish_transaltion de
```

Projects which alpaca uses
--------------------------

[](#projects-which-alpaca-uses)

- [artesaos/seotools](https://github.com/artesaos/seotools)
- [laracasts/flash](https://github.com/laracasts/flash)
- [msurguy/honeypot](https://github.com/msurguy/honeypot)
- [cocur/slugify](https://github.com/cocur/slugify)
- [caouecs/Laravel-lang](https://github.com/caouecs/Laravel-lang)
- [orchestra/testbench](https://github.com/orchestra/testbench)

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0472dc30fb5080c1ea5c4b46ef871bff216e476fed894731242b0fb3c69e6c2a?d=identicon)[approached](/maintainers/approached)

---

Top Contributors

[![approached](https://avatars.githubusercontent.com/u/3439330?v=4)](https://github.com/approached "approached (643 commits)")

### Embed Badge

![Health badge](/badges/alcodo-alpaca/health.svg)

```
[![Health](https://phpackages.com/badges/alcodo-alpaca/health.svg)](https://phpackages.com/packages/alcodo-alpaca)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k104.3M836](/packages/laravel-socialite)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k38.6M289](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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