Skip to content

Commit c8ebcf7

Browse files
Fix: Composer issue
1 parent a6b6d34 commit c8ebcf7

File tree

2,042 files changed

+488227
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,042 files changed

+488227
-0
lines changed

php/CompatInfo.php

+520
Large diffs are not rendered by default.

php/CompatInfo/Cli.php

+633
Large diffs are not rendered by default.

php/CompatInfo/PDO_class_array.php

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?php
2+
/**
3+
* PDO extension Class dictionary for PHP_CompatInfo 1.9.0a1 or better
4+
*
5+
* PHP versions 4 and 5
6+
*
7+
* @category PHP
8+
* @package PHP_CompatInfo
9+
* @author Davey Shafik <[email protected]>
10+
* @author Laurent Laville <[email protected]>
11+
* @license http://www.opensource.org/licenses/bsd-license.php BSD
12+
* @version CVS: $Id: PDO_class_array.php,v 1.2 2008/12/29 12:48:33 farell Exp $
13+
* @link http://pear.php.net/package/PHP_CompatInfo
14+
* @since version 1.9.0a1 (2008-11-23)
15+
*/
16+
17+
$GLOBALS['_PHP_COMPATINFO_CLASS_PDO'] = array (
18+
'PDO' =>
19+
array (
20+
'init' => '5.1.0',
21+
'name' => 'PDO',
22+
'ext' => 'PDO',
23+
'pecl' => false,
24+
),
25+
'PDOException' =>
26+
array (
27+
'init' => '5.1.0',
28+
'name' => 'PDOException',
29+
'ext' => 'PDO',
30+
'pecl' => false,
31+
),
32+
'PDORow' =>
33+
array (
34+
'init' => '5.1.0',
35+
'name' => 'PDORow',
36+
'ext' => 'PDO',
37+
'pecl' => false,
38+
),
39+
'PDOStatement' =>
40+
array (
41+
'init' => '5.1.0',
42+
'name' => 'PDOStatement',
43+
'ext' => 'PDO',
44+
'pecl' => false,
45+
),
46+
);
47+
?>

php/CompatInfo/PDO_func_array.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
/**
3+
* PDO extension Function dictionary for PHP_CompatInfo 1.9.0b2 or better
4+
*
5+
* PHP versions 4 and 5
6+
*
7+
* @category PHP
8+
* @package PHP_CompatInfo
9+
* @author Davey Shafik <[email protected]>
10+
* @author Laurent Laville <[email protected]>
11+
* @license http://www.opensource.org/licenses/bsd-license.php BSD
12+
* @version CVS: $Id: PDO_func_array.php,v 1.2 2008/12/29 12:48:33 farell Exp $
13+
* @link http://pear.php.net/package/PHP_CompatInfo
14+
* @since version 1.9.0b2 (2008-12-19)
15+
*/
16+
17+
$GLOBALS['_PHP_COMPATINFO_FUNC_PDO'] = array (
18+
'pdo_drivers' =>
19+
array (
20+
'init' => '5.1.0',
21+
'ext' => 'PDO',
22+
'pecl' => false,
23+
),
24+
);
25+
?>

0 commit comments

Comments
 (0)