pdooci

(★ 67)

Wrapping on PHP OCI functions to simulate a PDO object, since PDO support for OCI is very confuse and slow.

File Explorer

  • .gitignore
  • composer.json
  • LICENSE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

composer

View Details ▼

A package-based dependency manager for PHP projects.

composer init

Interactively create a `composer.json` file:

composer require {{user/package}}

Add a package as a dependency for this project, adding an entry to `composer.json`:

composer install

Install all the dependencies in this project's `composer.json` and create `composer.lock`:

🔍

pecl

View Details ▼

Manage PHP extensions from the PHP Extension Community Library.

pecl

Display a list of available commands:

pecl install {{package}}

Install a package:

pecl list

List installed packages:

🔍

php

View Details ▼

PHP command-line interface.

php {{path/to/file}}

Parse and execute a PHP script:

php {{[-l|--syntax-check]}} {{path/to/file}}

Check syntax on (i.e. [l]int) a PHP script:

php {{[-a|--interactive]}}

Run PHP inter[a]ctively:

🔍

phpunit

View Details ▼

PHPUnit test runner.

phpunit

Run tests in the current directory. Note: Expects you to have a `phpunit.xml'`:

phpunit {{path/to/TestFile.php}}

Run tests in a specific file:

phpunit --group {{name}}

Run tests annotated with the given group:

// repository documentation