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)
0.1-SNAPSHOT
Created 14 August 2017.
Build php project depending on composer install
Using the plugins DSL:
plugins {
id("org.hasnat.php-build-plugin") version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.swissphpfriends:php-build-plugin:0.1-SNAPSHOT")
}
}
apply(plugin = "org.hasnat.php-build-plugin")
Using the plugins DSL:
plugins {
id "org.hasnat.php-build-plugin" version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.swissphpfriends:php-build-plugin:0.1-SNAPSHOT"
}
}
apply plugin: "org.hasnat.php-build-plugin"