Skip to content

Commit 94f4857

Browse files
committed
Cleaned up
1 parent d734103 commit 94f4857

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ before_install:
6060

6161
script:
6262
- php -m
63+
- php --ri zephir_parser
6364

6465
notifications:
6566
email:

CREDITS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Zephir Parser delivered as a C extension for the PHP language
1+
The Zephir Parser delivered as a C extension for the PHP language.
22
Andres Gutierrez, Steffen Butzer, Serghei Iakovlev

config.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
dnl $Id$
2-
dnl config.m4 for extension zephir_parser
2+
dnl config.m4 for extension Zephir Parser
33

44
dnl Comments in this file start with the string 'dnl'.
55
dnl Remove where necessary. This file will not work
66
dnl without editing.
77

8-
PHP_ARG_ENABLE(zephir_parser, whether to enable zephir_parser,
8+
PHP_ARG_ENABLE(zephir_parser, whether to enable Zephir Parser,
99
[ --enable-zephir_parser Enable Zephir Parser])
1010

1111
if test "$PHP_ZEPHIR_PARSER" = "yes"; then
12-
AC_DEFINE(HAVE_ZEPHIR_PARSER, 1, [Whether you have zephir_parser])
12+
AC_DEFINE(HAVE_ZEPHIR_PARSER, 1, [Whether you have Zephir Parser])
1313
zephir_parser_sources="zephir_parser.c parser/parser.c parser/scanner.c"
1414
PHP_NEW_EXTENSION(zephir_parser, $zephir_parser_sources, $ext_shared, "")
1515
PHP_SUBST(ZEPHIR_PARSER_SHARED_LIBADD)

config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG_ENABLE("zephir_parser", "enable zephir_parser", "no");
1+
ARG_ENABLE("zephir_parser", "enable Zephir Parser", "no");
22

33
if (PHP_ZEPHIR_PARSER != "no") {
44
EXTENSION("zephir_parser", "zephir_parser.c", null, "-I"+configure_module_dirname);

php_zephir_parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
extern zend_module_entry zephir_parser_module_entry;
2424
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
2525

26-
#define PHP_ZEPHIR_PARSER_NAME "zephir_parser"
26+
#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
2727
#define PHP_ZEPHIR_PARSER_VERSION "1.0.0"
2828
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
2929
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."

zephir_parser.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[zephir_parser]
1+
[Zephir Parser]
22
extension=zephir_parser.so

0 commit comments

Comments
 (0)