From 90fe260c25b81ef665dbdd8e248feac472b0271a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkan=20I=C5=9EIK?= Date: Tue, 12 May 2026 12:58:03 +0300 Subject: [PATCH] new package php composer --- programming/php/composer/actions.py | 15 +++++++++++ programming/php/composer/pspec.xml | 39 +++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 programming/php/composer/actions.py create mode 100644 programming/php/composer/pspec.xml diff --git a/programming/php/composer/actions.py b/programming/php/composer/actions.py new file mode 100644 index 0000000000..d2072c3cca --- /dev/null +++ b/programming/php/composer/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools + +def setup(): + pass + +def build(): + pass + +def install(): + pisitools.insinto("/usr/bin", "composer.phar", "composer") + #shelltools.chmod("/usr/bin/composer", mode=0o755) \ No newline at end of file diff --git a/programming/php/composer/pspec.xml b/programming/php/composer/pspec.xml new file mode 100644 index 0000000000..155d2f2daf --- /dev/null +++ b/programming/php/composer/pspec.xml @@ -0,0 +1,39 @@ + + + + + composer + https://getcomposer.org + + Erkan IŞIK + erkanisik@pisilinux.org + + MIT + app:console + PHP için bağımlılık yönetim aracı + Composer, PHP projelerinizdeki kütüphaneleri ve bağımlılıkları yönetmenizi sağlayan bir araçtır. + + https://getcomposer.org/download/2.9.7/composer.phar + + + + + composer + + php8-common + + + /usr/bin/composer + + + + + + 2026-05-12 + 2.9.7 + İlk sürüm. + Erkan IŞIK + erkanisik@pisilinux.org + + + \ No newline at end of file