Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianbergmann/object-reflector
Allows reflection of object attributes, including inherited and non-public ones
https://github.com/sebastianbergmann/object-reflector
Last synced: 3 days ago
JSON representation
Allows reflection of object attributes, including inherited and non-public ones
- Host: GitHub
- URL: https://github.com/sebastianbergmann/object-reflector
- Owner: sebastianbergmann
- License: bsd-3-clause
- Created: 2017-03-12T15:02:28.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T11:56:37.000Z (24 days ago)
- Last Synced: 2024-11-25T09:07:04.282Z (17 days ago)
- Language: PHP
- Homepage:
- Size: 72.8 MB
- Stars: 6,228
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- php-awesome - Object Reflector - 对象反射 (类库 / 未归类)
README
[![Latest Stable Version](https://poser.pugx.org/sebastian/object-reflector/v)](https://packagist.org/packages/sebastian/object-reflector)
[![CI Status](https://github.com/sebastianbergmann/object-reflector/workflows/CI/badge.svg)](https://github.com/sebastianbergmann/object-reflector/actions)
[![codecov](https://codecov.io/gh/sebastianbergmann/object-reflector/branch/main/graph/badge.svg)](https://codecov.io/gh/sebastianbergmann/object-reflector)# sebastian/object-reflector
Allows reflection of object properties, including inherited and private as well as protected ones.
## Installation
You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
```
composer require sebastian/object-reflector
```If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
```
composer require --dev sebastian/object-reflector
```