An open API service indexing awesome lists of open source software.

https://github.com/gasol/php-makefile

Shared makefiles for PHP
https://github.com/gasol/php-makefile

composer-packages makefile-template makefiles php-tools

Last synced: about 12 hours ago
JSON representation

Shared makefiles for PHP

Awesome Lists containing this project

README

          

# PHP Makefile

A set of makefiles consists of useful rules for PHP development.

[![asciicast](https://asciinema.org/a/MGbvJeArxMCHmDJfrR1n9XuJF.svg)](https://asciinema.org/a/MGbvJeArxMCHmDJfrR1n9XuJF)

# Installation

Install as development package by using [Composer](https://getcomposer.org/)

composer require --dev gasolwu/php-makefile

Or, append the following snippet into your composer.json and then run install manually by `composer install`

{
"require-dev": {
"gasolwu/php-makefile": "^0.1"
}
}

# Getting Started

The minimum setup is to create your own Makefile and includes the PHP.mk.

cat > Makefile <