org.hasnat.php-build-plugin
Owner:
Hasnat Ullah
Build php project depending on composer install
https://github.com/hasnat/gradle-php-build-plugin
Sources: https://github.com/hasnat/gradle-php-build-plugin
Version 0.1-SNAPSHOT (latest)
Created 14 August 2017.
Build php project depending on composer install
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hasnat.php-build-plugin") version "0.1-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("org.hasnat.php-build-plugin:org.hasnat.php-build-plugin.gradle.plugin:0.1-SNAPSHOT") }It can then be applied in the precompiled script plugin:plugins { id("org.hasnat.php-build-plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hasnat.php-build-plugin:org.hasnat.php-build-plugin.gradle.plugin:0.1-SNAPSHOT") } } apply(plugin = "org.hasnat.php-build-plugin") - Applying plugins to all subprojects .