Changeset 266
- Timestamp:
- 07/10/2007 16:41:32 (17 months ago)
- Location:
- trunk/ext/php
- Files:
-
- 1 added
- 2 removed
- 4 modified
-
CHANGELOG (modified) (1 diff)
-
Makefile.in (deleted)
-
make_module.sh (deleted)
-
package.xml (added)
-
php_syck.h (modified) (1 diff)
-
phpext.c (modified) (2 diffs)
-
phpunit-tests/TestLoad.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ext/php/CHANGELOG
r261 r266 1 1 --- %YAML:1.0 2 - version: 0.9 3 date: 2007-07-11 4 status: beta 5 changes: 6 - this is the first release in PECL 7 - added several unit-tests 8 - fixed a bunch of vartype-errors 9 - added support for sexagesimal numbers 10 2 11 - version: 0.3 3 12 date: 2007-07-04 -
trunk/ext/php/php_syck.h
r257 r266 1 1 /* 2 2 +----------------------------------------------------------------------+ 3 | PHP Version 4|3 | PHP Version 5 | 4 4 +----------------------------------------------------------------------+ 5 | Copyright (c) 1997-200 2The PHP Group |5 | Copyright (c) 1997-2007 The PHP Group | 6 6 +----------------------------------------------------------------------+ 7 | This source file is subject to version 2.02of the PHP license, |7 | This source file is subject to version 3.01 of the PHP license, | 8 8 | that is bundled with this package in the file LICENSE, and is | 9 | available at through the world-wide-web at|10 | http://www.php.net/license/ 2_02.txt.|9 | available through the world-wide-web at the following url: | 10 | http://www.php.net/license/3_01.txt | 11 11 | If you did not receive a copy of the PHP license and are unable to | 12 12 | obtain it through the world-wide-web, please send a note to | 13 13 | license@php.net so we can mail you a copy immediately. | 14 14 +----------------------------------------------------------------------+ 15 | Author: | 15 | Authors: Why the lucky stiff | 16 | Alexey Zakhlestin <indeyets@gmail.com> | 16 17 +----------------------------------------------------------------------+ 17 18 -
trunk/ext/php/phpext.c
r265 r266 1 /** 2 * phpext.c 3 * 4 * $Author$ 5 * $Date$ 6 * 7 * Copyright (C) 2003 why the lucky stiff 8 * Copyright © 2007 Alexey Zakhlestin <indeyets@gmail.com> 9 * 10 **/ 1 /* 2 +----------------------------------------------------------------------+ 3 | PHP Version 5 | 4 +----------------------------------------------------------------------+ 5 | Copyright (c) 1997-2007 The PHP Group | 6 +----------------------------------------------------------------------+ 7 | This source file is subject to version 3.01 of the PHP license, | 8 | that is bundled with this package in the file LICENSE, and is | 9 | available through the world-wide-web at the following url: | 10 | http://www.php.net/license/3_01.txt | 11 | If you did not receive a copy of the PHP license and are unable to | 12 | obtain it through the world-wide-web, please send a note to | 13 | license@php.net so we can mail you a copy immediately. | 14 +----------------------------------------------------------------------+ 15 | Authors: Why the lucky stiff | 16 | Alexey Zakhlestin <indeyets@gmail.com> | 17 +----------------------------------------------------------------------+ 18 19 $Id$ 20 */ 11 21 #ifdef HAVE_CONFIG_H 12 22 # include "config.h" … … 21 31 #include "php_syck.h" 22 32 23 #define PHP_SYCK_VERSION " 0.3"33 #define PHP_SYCK_VERSION "@PACKAGE_VERSION@" 24 34 25 35 /** -
trunk/ext/php/phpunit-tests/TestLoad.php
r264 r266 1 1 <?php 2 dl('syck.so'); 2 3 if (!extension_loaded('syck')) 4 dl('syck.so'); 5 3 6 require_once "PHPUnit/Framework/TestCase.php"; 4 7