From 56141976e96244a6ae09e24cbf5365b368214300 Mon Sep 17 00:00:00 2001 From: kj Date: Sat, 30 Aug 2025 11:24:19 -0300 Subject: [PATCH] Add composer, phpunit and psysh --- configs/lang-php.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configs/lang-php.el b/configs/lang-php.el index b2fa1c6..4e67242 100644 --- a/configs/lang-php.el +++ b/configs/lang-php.el @@ -21,5 +21,14 @@ :ensure (:host github :repo "moskalyovd/emacs-php-doc-block") ) +;; Consola REPL para php. Similar a "php -a" pero con extras +(use-package psysh) + +;; Composer +(use-package composer) + +;; PHPUnit +(use-package phpunit) + (provide 'lang-php) ;;; lang-php.el ends here