- Algolia
- Ssdb
- Others
- GlobalKey
- format: guid->key
- https://github.com/pmvc-plugin/guid/blob/master/src/models/GlobalGuidKey.php
- Get Key
\PMVC\plug('guid')->manager()->getKey($guid);
- GlobalGuid
- format: key->guid
- https://github.com/pmvc-plugin/guid/blob/master/src/models/GlobalKeyGuid.php
- Get Guid
\PMVC\plug('guid')->manager()->getGuid($key);
- mkdir test_folder
- curl -sS https://getcomposer.org/installer | php
2.1 Install GUID by adding a dependency to pmvc-plugin/guid to the require section of your project's composer.json configuration file.
- vim composer.json
{
"require": {
"pmvc-plugin/guid": "dev-master"
}
}
- php composer.phar install
- php composer.phar require pmvc-plugin/guid