oracle / oci-php-sdk
OCI SDK for PHP - Oracle Cloud Infrastructure services in your PHP project
Requires
- php: >=5.6
- cache/adapter-common: ^1.2
- guzzlehttp/guzzle: ^6.5
Requires (Dev)
- cache/filesystem-adapter: ^1.1
- overtrue/phplint: ^3.0
- phpunit/phpunit: >=5.7
This package is not auto-updated.
Last update: 2024-11-07 23:56:31 UTC
README
About
oci-php-sdk provides an SDK for PHP that you can use to manage your Oracle Cloud Infrastructure resources.
The project is open source and maintained by Oracle Corp. The home page for the project is here.
Requirements
- PHP 8.0
Installation
Consuming the oci-php-sdk from a zip file
- Create a directory, e.g.
/path/to/artifacts
- Place the internal OCI PHP SDK zip file, e.g.
oci-php-sdk-0.0.1-2021-11-02T13-44-29.zip
, in that directory.- If you have multiple versions of the zip file, make sure the directory only contains the version you want to use.
- Add a dependency on
oracle/oci-php-sdk
version0.0.1
to yourcomposer.json
file - Add a repository of type
artifact
to yourcomposer.json
file, whereurl
is set to the directory with the zip file, e.g./path/to/artifacts
Here is a complete example of such a composer.json
file:
{
"name": "oracle/oci-php-sdk-consumer",
"type": "project",
"require": {
"oracle/oci-php-sdk": "0.0.1"
},
"repositories": [
{
"type": "artifact",
"url": "/path/to/artifacts"
}
]
}
- Clear your Composer cache,
vendor
directory, andcomposer.lock
file:
composer clear-cache && rm -rf vendor; rm composer.lock
- This helps make sure that
vendor
contains the latest contents from the zip file.
- Run
composer install
- In your source file, e.g.
src/test.php
, require thevendor/autoload.php
file, and then use the OCI PHP SDK classes you need. For example:
<?php
require 'vendor/autoload.php';
use Oracle\Oci\Common\UserAgent;
echo "UserAgent: " . UserAgent::getUserAgent() . PHP_EOL;
?>
- Run the test:
php src/test.php
Consuming the oci-php-sdk from a Git repository
- Add a dependency on
oracle/oci-php-sdk
versiondev-master
to yourcomposer.json
file - Add a repository of type
git
to yourcomposer.json
file, whereurl
is set to the same URL you use togit clone
, e.g.https://github.com/organization/my-repo.git
- Note:
https://github.com/organization/my-repo.git
is not an actual Git repository with the OCI PHP SDK.
- Note:
Here is a complete example of such a composer.json
file:
{
"name": "oracle/oci-php-sdk-consumer",
"type": "project",
"require": {
"oracle/oci-php-sdk": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/organization/my-repo.git"
}
]
}
- Clear your Composer cache,
vendor
directory, andcomposer.lock
file:
composer clear-cache && rm -rf vendor; rm composer.lock
- This helps make sure that
vendor
contains the latest contents from the Gitmaster
branch
- Run
composer install
- In your source file, e.g.
src/test.php
, require thevendor/autoload.php
file, and then use the OCI PHP SDK classes you need. For example:
<?php
require 'vendor/autoload.php';
use Oracle\Oci\Common\UserAgent;
echo "UserAgent: " . UserAgent::getUserAgent() . PHP_EOL;
?>
- Run the test:
php src/test.php
Examples
Examples can be found here.
You may run any example by invoking the php
command with the example you want to run,
for example: php tests/Oracle/Oci/Examples/ObjectStorageExample.php
Documentation
Installing PHP 8.0 on Oracle Linux 8
The following has worked for installing PHP 8.0 on Oracle Linux 8:
sudo dnf module list php
sudo dnf install @php:8.0 -y
Installing Composer
Install Composer as package manager for PHP:
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
Running the Instance Principals Example
The tests/Oracle/Oci/Examples/InstancePrincipalsExample.php
and tests/Oracle/Oci/Examples/CachingInstancePrincipalsExample.php
examples must be run on an OCI instance. To set it up, you can follow these steps:
-
Create a dynamic group. You can use a matching rule like this to get all instances in a certain compartment:
Any {instance.compartment.id = '<ocid-of-compartment>'}
-
Start an OCI instance. Make sure that it is matched by the dynamic group, e.g. by creating it in the correct compartment.
-
Create a policy for the dynamic group that grants the desired permissions. For example:
Allow dynamic-group <name-of-dynamic-group> to manage buckets in compartment <name-of-compartment> Allow dynamic-group <name-of-dynamic-group> to manage objects in compartment <name-of-compartment> Allow dynamic-group <name-of-dynamic-group> to manage objectstorage-namespaces in compartment <name-of-compartment>
-
Install PHP 8.0 on Oracle Linux. See above.
-
Copy the OCI PHP SDK and this example to the OCI instance (using
scp
orrsync
). -
Run Composer to download the required packages:
composer update composer install
-
SSH into the OCI instance.
-
Run the example:
php tests/Oracle/Oci/Examples/InstancePrincipalsExample.php
-
Run the Instance Principal-specific unit tests:
php vendor/bin/phpunit --group InstancePrincipalsRequired
Changes
See CHANGELOG.
Contributing
This project welcomes contributions from the community. Before submitting a pull request, please review our contribution guide
Security
Please consult the security guide for our responsible security vulnerability disclosure process
Known Issues
You can find information on any known issues with the SDK here.
Thread Safety
The OCI PHP SDK is based on the GuzzleHttp\Client
; therefore, it has the same threading behavior as GuzzleHttp\Client
.
There does not appear to be good documentation on the thread safety of GuzzleHttp\Client
, but there are hints that it is NOT thread-safe:
- "Are you using threads (like with pthreads)? Guzzle is not thread safe and will not work in a multithreaded application" 1
- "I would guess that the underlying cURL handles, and PHP's integration with cURL, have an issue being shared across multiple threads. You may have to create unique clients for each thread." 2
These issues are not unique to the OCI PHP SDK, and the solution seems to simply be to create a separate client per thread.
License
Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
See LICENSE for more details.