doomemacs/modules/lang/php/packages.el
Henrik Lissner 4506fb9223
lang/php: update wrt changes upstream #1350
Removes some of the hacks that have long since been resolved upstream,
and install phpactor from MELPA, now that it is available there.
2019-04-24 20:58:06 -04:00

17 lines
430 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/php/packages.el
(package! php-boris)
(package! php-extras :recipe (:fetcher github :repo "arnested/php-extras"))
(package! php-mode)
(package! php-refactor-mode)
(package! phpunit)
(when (featurep! +hack)
(package! hack-mode :recipe (:fetcher github :repo "hhvm/hack-mode")))
(unless (featurep! +lsp)
(package! phpactor))
(when (featurep! :editor format)
(package! php-cs-fixer))