PHPackages                             hiqdev/hidev - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. hiqdev/hidev

ActiveProject[Utility &amp; Helpers](/categories/utility)

hiqdev/hidev
============

Automation tool mixed with code generator for easier continuous development

0.6.2(7y ago)3229.4k↓33.3%7[4 issues](https://github.com/hiqdev/hidev/issues)20BSD-3-ClausePHPCI passing

Since May 12Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/hiqdev/hidev)[ Packagist](https://packagist.org/packages/hiqdev/hidev)[ Docs](https://github.com/hiqdev/hidev)[ RSS](/packages/hiqdev-hidev/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (39)Used By (20)

HiDev
=====

[](#hidev)

**Automation tool mixed with code generator for easier continuous development**

[![Latest Stable Version](https://camo.githubusercontent.com/58a68f3277a3ebf4d7deeea08b5d1649655b2089fbdd4abc91b53d115950e8be/68747470733a2f2f706f7365722e707567782e6f72672f6869716465762f68696465762f762f737461626c65)](https://packagist.org/packages/hiqdev/hidev)[![Total Downloads](https://camo.githubusercontent.com/8f714f086c556e52d0139c10de9772c5ef13ae384fe02c5e5296527b4319ca07/68747470733a2f2f706f7365722e707567782e6f72672f6869716465762f68696465762f646f776e6c6f616473)](https://packagist.org/packages/hiqdev/hidev)[![Build Status](https://camo.githubusercontent.com/7d92d38773606af5eb5e681775e114aec1bdac7fe82328ece0d1c06eedc28c58/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6869716465762f68696465762e737667)](https://travis-ci.org/hiqdev/hidev)[![Scrutinizer Code Coverage](https://camo.githubusercontent.com/cf248d2d477199a369989dbf15330e6db480e1af8c20765c8935b36e4e3976be/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6869716465762f68696465762e737667)](https://scrutinizer-ci.com/g/hiqdev/hidev/)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/6f949030e9614d48bf951eaa89e9bc91269dc15067a4999a219013f120504357/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6869716465762f68696465762e737667)](https://scrutinizer-ci.com/g/hiqdev/hidev/)[![Dependency Status](https://camo.githubusercontent.com/618c13c6c42c81d6d67e49fe80409eb1b66a4b7aff33b298457ecf70e406b4cb/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f6869716465763a68696465762f6465762d6d61737465722f62616467652e737667)](https://www.versioneye.com/php/hiqdev:hidev/dev-master)

Simplifies and automates:

- package management: [Composer](https://getcomposer.org/), [Packagist](https://packagist.org/)
- releasing: README, LICENSE, CHANGELOG, version bumping
- CI services integration: [Travis](https://travis-ci.org/), [Scrutinizer](https://scrutinizer-ci.com/)
- testing: [PHPUnit](https://phpunit.de/), [Codeception](http://codeception.com/)
- code quality checking: [PHP-CS-Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), [VersionEye](https://www.versioneye.com/)
- version control management: .gitignore, GitHub
- PHAR building with [Box](https://github.com/box-project/box2)
- code generation with php and twig templates

Functionality is provided and can be extended with [plugins](docs/Plugins.md).

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

[](#installation)

There are several ways of installation in order of preference:

1. download PHAR from
2. require `hiqdev/hidev` in your project's composer.json
3. install globally with `composer global require "hiqdev/hidev:*"`

Idea
----

[](#idea)

The main idea behind HiDev is to combine code generator and build tool to stop copying config files between your projects. And automate all the repeated tasks of course. But firstly generate all the files that can be generated, e.g.:

- `.gitignore`, `README.md`, `LICENSE`, `CHANGELOG.md`
- `composer.json`
- `.travis.yml`, `.scrutinizer.yml`
- `phpunit.xml`, `codeception.yml`
- `.php_cs`

You write a simple config specifying general information about your package and plugins to be used. HiDev alone does nothing at all! You specify what you want it to do in config or use plugins. There are predefined plugins with generally usable configs or you can create plugins yourself.

For example, `hiqdev/hidev-php` plugin is a general config for PHP projects and will enable HiDev to create all the listed above files and adds goals to use:

- `hidev default` or simply `hidev` will update config files according to the changes you made
- `hidev fix`: will update `.php_cs` file and run `php-cs-fixer` to fix code style of your PHP files
- `hidev test`: will update `phpunit.xml` and run your tests with `phpunit`
- `hidev build`: will do fix and test alltogether
- `hidev bump` and `hidev release` will bump project version and publish release to GitHub

HiDev can generate different files: sources, tests, anything else based on templates and all the information available in config files or elsewhere.

Now I'm working to enable HiDev to do more:

- project bootstraping and deploy
- integration with other build tools: robo, grunt, gulp, ...
- more for Python: pep8, tests, ...

Configuration
-------------

[](#configuration)

The main config file is: `hidev.yml`.

You can generate basic config file with **init** command:

```
hidev init the-vendor/my-new-package
```

You will receive:

```
package:
    type:           project
    name:           my-new-package
    title:          My New Package
    keywords:       my, new, package

vendor:
    name:           the-vendor
    authors:
        hiqsol:
            name:       Andrii Vasyliev
            email:      sol@hiqdev.com
```

Package section holds info about the package:

- **name**: your package name, same as in package manager but without vendor name
- **title**: single line description of your package (description in composer.json)
- **type**, **keywords**: same as in package manager

Also you can add more info for better README generation:

- **headline**: short user friendly name of your project, used for README header
- **description**: longer description

Vendor section holds info about you or your company:

- **name**: same as in package manager
- **title**: full vendor name, will be used for README, LICENSE and so on
- **github**, **homepage**, **forum**, **email**: obviously
- **license**: will be used if package does not specify one
- **authors**: array of authors, see: [HiQDev's config](https://github.com/hiqdev/hidev-hiqdev/blob/master/src/config/goals.yml)

Best way to configure vendor is to create and use your vendor plugin for HiDev. It's easy, just fork `hiqdev/hidev-hiqdev`, change it appropriately and publish to Packagist.

For examples of HiDev configuration you can see [our repos on GitHub](https://github.com/hiqdev), all of them are automated with HiDev.

Usage
-----

[](#usage)

```
hidev goal[/action]
```

License
-------

[](#license)

This project is released under the terms of the BSD-3-Clause [license](LICENSE). Read more [here](http://choosealicense.com/licenses/bsd-3-clause).

Copyright © 2015-2018, HiQDev ()

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance55

Moderate activity, may be stable

Popularity37

Limited adoption so far

Community30

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 97.4% 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 ~41 days

Recently: every ~185 days

Total

36

Last Release

2574d ago

Major Versions

0.6.2 → 1.0.x-dev2019-05-01

### Community

Maintainers

![](https://www.gravatar.com/avatar/790fd24da129907d373559f60c6994f664f06e3f518502c03580cc9f3594615e?d=identicon)[hiqdev](/maintainers/hiqdev)

---

Top Contributors

[![hiqsol](https://avatars.githubusercontent.com/u/11820365?v=4)](https://github.com/hiqsol "hiqsol (1011 commits)")[![SilverFire](https://avatars.githubusercontent.com/u/4499203?v=4)](https://github.com/SilverFire "SilverFire (17 commits)")[![VadymHrechukha](https://avatars.githubusercontent.com/u/114911409?v=4)](https://github.com/VadymHrechukha "VadymHrechukha (6 commits)")[![jomonkj](https://avatars.githubusercontent.com/u/11212888?v=4)](https://github.com/jomonkj "jomonkj (1 commits)")[![edgardmessias](https://avatars.githubusercontent.com/u/1530997?v=4)](https://github.com/edgardmessias "edgardmessias (1 commits)")[![strorch](https://avatars.githubusercontent.com/u/23340907?v=4)](https://github.com/strorch "strorch (1 commits)")[![tafid](https://avatars.githubusercontent.com/u/3338188?v=4)](https://github.com/tafid "tafid (1 commits)")

---

Tags

automationbuildcode-generationhacktoberfestautomationcode generatorcontinuous integrationbuild-tooltask-runnercontinuous development

### Embed Badge

![Health badge](/badges/hiqdev-hidev/health.svg)

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

###  Alternatives

[symfony/maker-bundle

Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.

3.4k111.1M568](/packages/symfony-maker-bundle)[phing/phing

PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.

1.2k21.7M876](/packages/phing-phing)[cognesy/instructor-php

The complete AI toolkit for PHP: unified LLM API, structured outputs, agents, and coding agent control

310107.9k1](/packages/cognesy-instructor-php)[hanneskod/classtools

Find, extract and process classes from file system

1319.1M40](/packages/hanneskod-classtools)[jakubkulhan/chrome-devtools-protocol

Chrome Devtools Protocol client for PHP

183967.6k3](/packages/jakubkulhan-chrome-devtools-protocol)[sulu/automation-bundle

The Sulu Bundle which provides automation functionality

18289.1k8](/packages/sulu-automation-bundle)

PHPackages © 2026

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