https://github.com/myerscode/package-discovery
A package to help find plugins for packages
https://github.com/myerscode/package-discovery
Last synced: 9 months ago
JSON representation
A package to help find plugins for packages
- Host: GitHub
- URL: https://github.com/myerscode/package-discovery
- Owner: myerscode
- License: mit
- Created: 2022-06-15T21:48:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-16T16:29:28.000Z (almost 2 years ago)
- Last Synced: 2024-07-17T05:46:58.842Z (over 1 year ago)
- Language: PHP
- Size: 20.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# Package Discovery
> A service to help easily find plugins for your services, using Composer metadata!
[](https://packagist.org/packages/myerscode/package-discovery)
[](https://packagist.org/packages/myerscode/package-discovery)
[](https://packagist.org/packages/myerscode/package-discovery)

[](https://codecov.io/gh/myerscode/utilities-strings)
## Install
You can install this package via composer:
``` bash
composer require myerscode/package-discovery
```
## Usage
Publishing projects just need to add appropriate metadata in their package, which can be then detected by a consuming
project. A project which wants to disover projects will need to instantiate a `Finder` to look up the project namespace.
You will then be able to consume the found metadata in the project as desired.
### Publishing project
In your `package.json` file, add a object in the `extras` object, with a key that relates to the project namespace you
want to discover it.
```json
{
"name": "myerscode/corgis",
"extra": {
"myerscode": {
"corgis": ["Gerald", "Rupert"],
"providers": [
"Myerscode\\Corgis\\CorgiProvider"
]
}
}
}
```
### Consuming project
Using the `Finder` class, initiate passing in the root path, relative to the `vendor` directory.
Then use the `discover` method to find all packages that have the given name in its extras field.
```php
$finder = new Finder(__DIR__);
// would find all installed packages that have a myerscode namespace in the extras
$packages = $finder->discover('myerscode');
```
After discovering package you would have an array of metadata for each one discovered.
```php
[
"myerscode/corgis" => [
"corgis": ["Gerald", "Rupert"],
"providers": [
"Myerscode\\Corgis\\CorgiProvider"
]
]
]
```
### Avoiding discovery
If you don't want to discover a specific project, then you can add some metadata in the consuming package to prevent this.
You would do this by adding the package name to `avoid` under the projects namespace in the extras field of `package.json`.
```json
{
"name": "myerscode/demo-project",
"extra": {
"myerscode": {
"avoid": [
"myerscode/corgis"
]
}
}
}
```
If you want to avoid loading in all discoverable packages, simply add `*` in the avoid field.
```json
{
"name": "myerscode/demo-project",
"extra": {
"myerscode": {
"avoid": [ "*" ]
}
}
}
```
## Locating a package
When you want to find out where a package is located on the disk, you can use the `locate` method to look up its absolute
path.
```php
$finder = new Finder(__DIR__);
echo $finder->locate('myerscode/test-package');
// /User/fred/project-name/vendor/myerscode/test-package
```
## Getting package meta for a service
To get package meta for a specific service call the `packageMetaForService` method, passing the package name and the service name.
```php
$finder = new Finder(__DIR__);
echo $finder->packageMetaForService('myerscode/test-package', 'myerscode');
[
"corgis": ["Gerald", "Rupert"],
"providers": [
"Myerscode\\Corgis\\CorgiProvider"
]
]
```
## Getting package extra
To get all the extras data for a package call the `packageExtra` method.
```php
$finder = new Finder(__DIR__);
echo $finder->packageExtra('myerscode/test-package');
[
"myerscode" => [
"corgis": ["Gerald", "Rupert"],
"providers": [
"Myerscode\\Corgis\\CorgiProvider"
]
]
]
```
## Issues
Bug reports and feature requests can be submitted on the [Github Issue Tracker](https://github.com/myerscode/package-discovery/issues).
## Contributing
See the Myerscode [contributing](https://github.com/myerscode/docs/blob/master/contributing.md) page for information.
## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.