Skip to content

Commit bceb301

Browse files
authored
Merge pull request #639 from emacs-php/fix/cask-and-package-requires
Fix Cask and Package-Requires header
2 parents 3a91ac3 + 84767fb commit bceb301

File tree

9 files changed

+8
-10
lines changed

9 files changed

+8
-10
lines changed

.dir-locals.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
((emacs-lisp-mode (package-lint-main-file . "php-mode.el")))

Cask

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
(package "php-mode" "1.23.0" "Major mode for editing PHP code")
22
(source melpa)
33

4-
(package-file "php.el")
5-
(package-file "php-face.el")
64
(package-file "php-mode.el")
7-
(package-file "php-project.el")
8-
(package-file "php-mode-debug.el")
5+
6+
(files
7+
"php.el"
8+
"php-face.el"
9+
"php-project.el"
10+
"php-mode-debug.el")
911

1012
(development
1113
(depends-on "pkg-info")

lisp/php-local-manual.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
;; URL: https://github.com/emacs-php/php-mode
88
;; Keywords: docs, php
99
;; Version: 2.0.0
10-
;; Package-Requires: ((emacs "25.2"))
1110
;; License: GPL-3.0-or-later
1211

1312
;; This program is free software; you can redistribute it and/or modify

php-align.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
;; Keywords: php languages convenience align
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; Version: 1.23.0
11-
;; Package-Requires: ((emacs "24.3"))
1211
;; License: GPL-3.0-or-later
1312

1413
;; This program is free software; you can redistribute it and/or modify

php-face.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
;; Version: 1.23.0
88
;; Keywords: faces, php
99
;; Homepage: https://github.com/emacs-php/php-mode
10-
;; Package-Requires: ((emacs "24.3"))
1110
;; License: GPL-3.0-or-later
1211

1312
;; This program is free software; you can redistribute it and/or modify

php-mode-debug.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
;; URL: https://github.com/emacs-php/php-mode
77
;; Keywords: maint
88
;; Version: 1.23.0
9-
;; Package-Requires: ((emacs "24.3"))
109
;; License: GPL-3.0-or-later
1110

1211
;; This program is free software; you can redistribute it and/or modify

php-project.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
88
;; Version: 1.23.0
9-
;; Package-Requires: ((emacs "24.3"))
109
;; License: GPL-3.0-or-later
1110

1211
;; This program is free software; you can redistribute it and/or modify

php.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
;; Version: 1.23.0
88
;; Keywords: languages, php
99
;; Homepage: https://github.com/emacs-php/php-mode
10-
;; Package-Requires: ((emacs "24.3"))
1110
;; License: GPL-3.0-or-later
1211

1312
;; This program is free software; you can redistribute it and/or modify

tests/.dir-locals.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
((emacs-lisp-mode (package-lint-main-file . "../php-mode.el")))

0 commit comments

Comments
 (0)