Search Gradle plugins

Version 3.6

3.6

Created 31 August 2023.

Seamless PHP development with Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("ee.keel.gradle.PhpToolkitBasePlugin") version "3.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ee.keel.gradle:gradle-toolkits:3.6")
      }
    }
    
    apply(plugin = "ee.keel.gradle.PhpToolkitBasePlugin")
  • Applying plugins to all subprojects .