elpasync pushed a change to branch elpa/php-mode. from 6513efaf6f Merge pull request #703 from emacs-php/fix/indentation new 651d524bdb Add script/extract_functions.php new 6531053ce6 Add php-defs.el new 5179a1c28a Copy c-end-of-token function from cc-engine.el new 4609c9334c Add php-leading-tokens new 6049ad7453 Add php-complete.el new b3718d488d Copy thing-at-point-bounds-of-string-at-point function from thingatpt.el new 51670f3364 Add "=>" to php-mode token as pseudo-operator new 836663957b Add functions-txt subcommand to extract_functions.php new 7e4905a6e9 Merge pull request #708 from emacs-php/feature/php-completion
Summary of changes: .gitignore | 1 + CHANGELOG.md | 6 + Makefile | 4 +- lisp/php-complete.el | 124 ++ lisp/php-defs.el | 3892 ++++++++++++++++++++++++++++++++++++ lisp/php-mode.el | 3 +- lisp/php.el | 128 +- script/README.md | 40 + script/data/module_id_prefixes.php | 846 ++++++++ script/extract_functions.php | 118 ++ script/module_id_prefixes.php | 806 ++++++++ 11 files changed, 5946 insertions(+), 22 deletions(-) create mode 100644 lisp/php-complete.el create mode 100644 lisp/php-defs.el create mode 100644 script/README.md create mode 100644 script/data/module_id_prefixes.php create mode 100755 script/extract_functions.php create mode 100644 script/module_id_prefixes.php