Download the PHP
package originphp/value-store without Composer
On this page you can find all versions of the php package
originphp/value-store. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.
Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.
In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories.
In this case some credentials are needed to access such packages.
Please use the auth.json textarea to insert credentials, if a package is coming from a private repository.
You can look here for more information.
Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
To use Composer is sometimes complicated. Especially for beginners.
Composer needs much resources. Sometimes they are not available on a simple webspace.
If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
ValueStore is a Key-Value Store (KVS) which provides a consistent interface for working with various types of stores, including JSON, Yaml, XML and PHP files.
Installation
To install this package
Usage
The type of store that is used is detected by the file extension (json, yml, xml, or php), if it cannot detect or there is no extension then json type will be used. This can also be overridden in the constructor.
You work with this like an object or array, and if the file exists it will load the existing data. To save data call the save method.
You can also use isset, unset and count
You can iterate through the settings
To increment or decrement values in the store
You can also pass a second argument with the amount you want to increase or decrease by.
You can also set/get/check values using functions.
You can also access as an array
To clear all data in the ValueStore (remember to call save if needed).
You can convert the ValueStore object to any type on the fly
Dependencies
To use Xml you will need to install the following composer package
To use Yaml you will need to install the following composer package
Composer command for our command line client (download client)This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free.Standard composer command
The package originphp/value-store contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.