PHPackages                             wai-blue/adios-wireframe - 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. wai-blue/adios-wireframe

ActiveLibrary

wai-blue/adios-wireframe
========================

TWIG-based wireframing package for ADIOS applications

0.1.x-dev(2y ago)015MITJavaScript

Since Nov 19Pushed 2y ago2 watchersCompare

[ Source](https://github.com/wai-blue/adios-wireframe)[ Packagist](https://packagist.org/packages/wai-blue/adios-wireframe)[ RSS](/packages/wai-blue-adios-wireframe/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

How to install
==============

[](#how-to-install)

Create an empty folder
----------------------

[](#create-an-empty-folder)

Create an empty folder, e.g. `my-adios-app-wireframe`.

Composer
--------

[](#composer)

1. Create `composer.json` file, see below
2. Run `composer install` in that folder.
3. Create `config.php` file, see below.
4. Create `index.php` file, see below.
5. Copy a `logo.png` file containing logo of your project.
6. For Apache web brower, create `.htaccess` file, see below.
7. Open the `index.php` in your browser.
8. Create `wireframes` folder and add your wireframes TWIG files. Start with `index.twig`, see example below.

**composer.json**

```
{
  "require": {
    "wai-blue/adios-wireframe": "dev-main"
  }
}

```

**config.php**

```
$config = [];
$config['skin'] = 'wireframe'; // Optional. If empty, default skin will be used. Options: blue, cyan, green, wireframe
$config['projectName'] = 'My ADIOS app';
$config['rewriteBase'] = '/my-adios-app-wireframe';
$config['sidebarItems'] = [
  '' => ['text' => 'Home', 'icon' => 'fas fa-home'],
  'contacts' => ['text' => 'Contacts', 'icon' => 'fas fa-user'],
  'calendar' => ['text' => 'Calendar', 'icon' => 'fas fa-calendar'],
];
```

**index.php**

```
require('vendor/autoload.php');
require('config.php');

$wireframe = $_REQUEST['wireframe'] ?? 'index';

$options = [
  'wireframesDir' => __DIR__ . '/wireframes',
  'isWindow' => (bool) ($_REQUEST['__IS_WINDOW__'] ?? false),
];

$loader = new \AdiosWireframe\Loader($options, $config);
echo $loader->render($wireframe);
```

**wireframes/index.twig**

```

      {{ include('components/card.twig', {
        'title': 'Most active contacts',
        'content': include('components/table.twig', {
          'columns': [
            'Given Name',
            'Last Name',
            'Age'
          ]
        })
      }) }}

```

**.htaccess**

```
RewriteEngine On

RewriteRule ^assets/(.*)$ vendor/wai-blue/adios-wireframe/src/assets/$1

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?wireframe=$1&%{QUERY_STRING}

```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity29

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

895d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/394c74eefe13d2cf99097d4f4a80c2c8dd1e69e311ffa43175164efbdcc77cd0?d=identicon)[wai-blue](/maintainers/wai-blue)

---

Top Contributors

[![wai-blue](https://avatars.githubusercontent.com/u/88132073?v=4)](https://github.com/wai-blue "wai-blue (30 commits)")

### Embed Badge

![Health badge](/badges/wai-blue-adios-wireframe/health.svg)

```
[![Health](https://phpackages.com/badges/wai-blue-adios-wireframe/health.svg)](https://phpackages.com/packages/wai-blue-adios-wireframe)
```

###  Alternatives

[sonata-project/entity-audit-bundle

Audit for Doctrine Entities

644989.8k1](/packages/sonata-project-entity-audit-bundle)[abydahana/aksara

Aksara is a CodeIgniter based CRUD Toolkit you can use to build complex applications become shorter, secure and more reliable just in a few lines of code. Serving both CMS or Framework, produce both HEADLESS (RESTful API) or TRADITIONAL (Browser Based), just by writing single controller. Yet it's reusable, scalable and ready to use!

1121.2k](/packages/abydahana-aksara)

PHPackages © 2026

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