Initial commit

This commit is contained in:
2025-12-28 02:28:35 +01:00
commit 57582a2e53
11 changed files with 2855 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "noccylabs/composer-package-plugin",
"description": "A composer plugin for packaging and publishing composer packages",
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\Composer\\PackagePlugin\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require-dev": {
"composer/composer": "^2.9"
},
"extra": {
"class": "NoccyLabs\\Composer\\PackagePlugin\\PackagePlugin"
},
"require": {
"composer-plugin-api": "^2.0"
}
}