task-keeper 0.31.0

Task keeper to manage tasks from different task runners
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "scripts": {
    "test": "phpunit",
    "hello": "echo 'Hello Composer!'",
    "my-ip": [
      "curl --version",
      "curl https://httpbin.org/ip"
    ],
    "post-package-install": [
      "MyVendor\\MyClass::postPackageInstall"
    ],
    "pre-package-install": [
      "MyVendor\\MyClass::prePackageInstall"
    ]
  }
}