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
- Host: GitHub
- URL: https://github.com/gasol/php-makefile
- Owner: Gasol
- License: mit
- Created: 2019-11-05T10:12:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T09:56:41.000Z (almost 6 years ago)
- Last Synced: 2025-05-29T10:48:24.785Z (4 months ago)
- Topics: composer-packages, makefile-template, makefiles, php-tools
- Language: Makefile
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.adoc
- License: LICENSE
Awesome Lists containing this project
README
# PHP Makefile
A set of makefiles consists of useful rules for PHP development.
[](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 <