Files
doomemacs/modules/lang/php/packages.el
Cody Wilson 3f98c8b1a6 Added company-phpactor to packages
Previously this was included automatically with phpactor, but now the
phpactor package call is only pulling in phpactor.el and its
requirements.
2019-08-13 10:23:03 -05:00

19 lines
454 B
EmacsLisp

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