Skip to content

Commit 538e19c

Browse files
committed
Add php-suite.el
1 parent a48a785 commit 538e19c

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

php-suite.el

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
;;; php-suite.el --- PHP coding integration suite -*- lexical-binding: t; -*-
2+
3+
;; Copyright (C) 2018 Friends of Emacs-PHP development
4+
5+
;; Author: USAMI Kenta <[email protected]>
6+
;; Keywords: tools, php
7+
;; URL: https://github.com/emacs-php/php-suite
8+
;; Version: 0.0.1
9+
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5") (php-mode "1.19") (php-runtime "0.1.0") (web-mode "16.0") (composer "0.0.8") (phpunit "0.16") (psysh "0.0.3") (flycheck-phpstan "0.2.1"))
10+
;; License: GPL-3.0-or-later
11+
12+
;; This program is free software; you can redistribute it and/or modify
13+
;; it under the terms of the GNU General Public License as published by
14+
;; the Free Software Foundation, either version 3 of the License, or
15+
;; (at your option) any later version.
16+
17+
;; This program is distributed in the hope that it will be useful,
18+
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19+
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20+
;; GNU General Public License for more details.
21+
22+
;; You should have received a copy of the GNU General Public License
23+
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
24+
25+
;;; Commentary:
26+
27+
;; This package integrates some packages for PHP coding.
28+
;;
29+
;; * php-project
30+
;; * php-runtime
31+
;; * php-mode
32+
;; * web-mode
33+
;; * composer
34+
;; * phpunit
35+
;; * psysh
36+
;; * phpstan
37+
;; * (phpactor)
38+
;;
39+
40+
;;; Code:
41+
(require 'php-project)
42+
43+
44+
(provide 'php-suite)
45+
;;; php-suite.el ends here

0 commit comments

Comments
 (0)