feat(php): add composer.el

This commit is contained in:
Ellis Kenyo 2021-09-15 20:22:33 +01:00
parent aed9d0b7e5
commit b80a993175
No known key found for this signature in database
GPG key ID: EB5EE4AA4750E0E9
2 changed files with 19 additions and 0 deletions

View file

@ -127,6 +127,24 @@
:mode "\\.hh$")
(use-package! composer
:defer t
:init
(map! :after php-mode
:localleader
:map php-mode-map
:prefix ("c" . "composer")
"c" #'composer
"i" #'composer-install
"r" #'composer-require
"u" #'composer-update
"d" #'composer-dump-autoload
"s" #'composer-run-script
"v" #'composer-run-vendor-bin-command
"o" #'composer-find-json-file
"l" #'composer-view-lock-file))
;;
;; Projects