org.hasnat.php-build-plugin
所有者: Hasnat Ullah
根据composer安装构建PHP项目
https://github.com/hasnat/gradle-php-build-plugin
源代码: https://github.com/hasnat/gradle-php-build-plugin
版本 0.1-SNAPSHOT(最新版)
0.1-SNAPSHOT
创建于2017年8月14日。
根据composer安装构建PHP项目
使用插件DSL
plugins {
id("org.hasnat.php-build-plugin") version "0.1-SNAPSHOT"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.swissphpfriends:php-build-plugin:0.1-SNAPSHOT")
}
}
apply(plugin = "org.hasnat.php-build-plugin")
使用插件DSL
plugins {
id "org.hasnat.php-build-plugin" version "0.1-SNAPSHOT"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.swissphpfriends:php-build-plugin:0.1-SNAPSHOT"
}
}
apply plugin: "org.hasnat.php-build-plugin"