https://github.com/phonetworks/pho-framework
A stateless PHP framework that establishes the object-centered actor/graph model
https://github.com/phonetworks/pho-framework
actor-model graph php social
Last synced: 5 months ago
JSON representation
A stateless PHP framework that establishes the object-centered actor/graph model
- Host: GitHub
- URL: https://github.com/phonetworks/pho-framework
- Owner: phonetworks
- License: mit
- Created: 2017-04-20T16:43:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T00:14:27.000Z (almost 7 years ago)
- Last Synced: 2025-10-13T06:23:03.084Z (9 months ago)
- Topics: actor-model, graph, php, social
- Language: PHP
- Homepage: http://www.phonetworks.org
- Size: 297 KB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Pho-Framework [](https://travis-ci.org/phonetworks/pho-framework)
Pho-Framework is the foundational component of Pho Stack. It establishes
the object-centered actor/graph framework that all Pho components are built upon. It is stateless, which means, it doesn't provide persistence of its objects in any way, but it is designed for such extensibility via hydrator functions.
## Install
The recommended way to install pho-framework is through composer.
```composer require phonetworks/pho-framework```
Please note, pho-framework works with PHP 7.2+
## Documentation
For more infomation on the internals of pho-lib-graph, as well as a simple user guide, please refer to the [docs/](https://github.com/phonetworks/pho-framework/tree/master/docs) folder. You may also generate the APIs using phpdoc as described in [CONTRIBUTING.md](https://github.com/phonetworks/pho-framework/blob/master/CONTRIBUTING.md)
## FAQ
* **Is there a way to save the graph in a file or on disk?**
Pho-Framework has no built-in server or mechanism for saving/storing/replacing the graph. It is built purely in memory. But you can use [pho-microkernel](https://github.com/phonetworks/pho-framework) for such persistence, and more (access control lists etc.)
## License
MIT, see [LICENSE](https://github.com/phonetworks/pho-framework/blob/master/LICENSE).