spacemacs/contrib/!lang/php/packages.el
syl20bnr 437a819ea1 core: inline recipe in package list
It is now possible to override the recipe in a custom layer.

For instance to override the recipe R for package P in layer L
In a private layer L' put at the end of dotspacemacs-configuration-layers
and listing P with an init function for P, L' becomes the ower of
P and the recipe R' defined in L' overrides the recipe R.
2015-08-14 15:31:22 -04:00

67 lines
1.5 KiB
EmacsLisp

;;; packages.el --- PHP Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq php-packages
'(
company
drupal-mode
eldoc
ggtags
helm-gtags
php-auto-yasnippets
(php-extras :location (recipe :fetcher github :repo "arnested/php-extras"))
php-mode
phpcbf
phpunit
flycheck
))
(defun php/init-drupal-mode ()
(use-package drupal-mode
:defer t))
(defun php/post-init-eldoc ()
(add-hook 'php-mode-hook 'eldoc-mode)
(when (configuration-layer/package-usedp 'ggtags)
(spacemacs/ggtags-enable-eldoc 'php-mode)))
(defun php/post-init-ggtags ()
(add-hook 'php-mode-hook 'ggtags-mode))
(defun php/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'php-mode))
(defun php/init-php-auto-yasnippets ()
(use-package php-auto-yasnippets
:defer t))
(defun php/init-php-extras ()
(use-package php-extras
:defer t))
(defun php/init-php-mode ()
(use-package php-mode
:defer t
:mode ("\\.php\\'" . php-mode)))
(defun php/init-phpcbf ()
(use-package phpcbf
:defer t))
(defun php/init-phpunit ()
(use-package phpunit
:defer t))
(when (configuration-layer/layer-usedp 'auto-completion)
(defun php/post-init-company ()
(spacemacs|add-company-hook php-mode)))