mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-11-26 12:25:03 +01:00
recommand using the psalm-plugin package over builtin integration (#170)
This commit is contained in:
parent
a521ed909b
commit
28eb34e788
23
README.md
23
README.md
@ -16,6 +16,7 @@ Psl is a standard library for PHP, inspired by [hhvm/hsl](https://github.com/hhv
|
||||
The goal of Psl is to provide a consistent, centralized, well-typed set of APIs for PHP programmers.
|
||||
|
||||
## Example
|
||||
|
||||
```php
|
||||
<?php
|
||||
|
||||
@ -43,26 +44,13 @@ foo([95, 96, null, 98]);
|
||||
|
||||
Supported installation method is via [composer](https://getcomposer.org):
|
||||
|
||||
```console
|
||||
$ composer require azjezz/psl
|
||||
```shell
|
||||
composer require azjezz/psl
|
||||
```
|
||||
|
||||
### Psalm Integration
|
||||
|
||||
PSL comes with a [Psalm](https://psalm.dev/) plugin, that improves return type for PSL functions that psalm cannot infer from source code.
|
||||
|
||||
To enable the Psalm plugin, add the `Psl\Integration\Psalm\Plugin` class to your psalm configuration file plugins list as follows:
|
||||
|
||||
```xml
|
||||
<psalm>
|
||||
...
|
||||
<plugins>
|
||||
...
|
||||
<pluginClass class="Psl\Integration\Psalm\Plugin" />
|
||||
</plugins>
|
||||
</psalm>
|
||||
|
||||
```
|
||||
Please refer to the [`php-standard-library/psalm-plugin`](https://github.com/php-standard-library/psalm-plugin) repository.
|
||||
|
||||
## Documentation
|
||||
|
||||
@ -86,19 +74,16 @@ This is not exhaustive list.
|
||||
- `$haystack`, `$needle`, and `$pattern` are in the same order for all functions that take them
|
||||
- Functions should be consistently named.
|
||||
- If an operation can conceivably operate on either keys or values, the default is to operate on the values - the version that operates on keys should have `_key` suffix (e.g. `Iter\last`, `Iter\last_key`, `Iter\contains`, `Iter\contains_key` )
|
||||
- Find-like operations that can fail should return `?T`; a second function should be added with an `x` suffix that uses an invariant to return `T` (e.g. `Arr\last`, `Arr\lastx`)
|
||||
- Iterable functions that do an operation based on a user-supplied keying function for each element should be suffixed with `_by` (e.g. `Arr\sort_by`, `Iter\group_by`, `Math\max_by`)
|
||||
|
||||
## Sponsors
|
||||
|
||||
Thanks to our sponsors and supporters:
|
||||
|
||||
|
||||
| JetBrains |
|
||||
|---|
|
||||
| <a href="https://www.jetbrains.com/?from=PSL ( PHP Standard Library )" title="JetBrains" target="_blank"><img src="https://res.cloudinary.com/azjezz/image/upload/v1599239910/jetbrains_qnyb0o.png" height="120" /></a> |
|
||||
|
||||
|
||||
## License
|
||||
|
||||
The MIT License (MIT). Please see [`LICENSE`](./LICENSE) for more information.
|
||||
|
@ -22,7 +22,8 @@
|
||||
"friendsofphp/php-cs-fixer": "^2.18",
|
||||
"roave/security-advisories": "dev-master",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"vimeo/psalm": "dev-master"
|
||||
"vimeo/psalm": "dev-master",
|
||||
"php-standard-library/psalm-plugin": "^1.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
@ -8,6 +8,11 @@ use Psalm\Plugin\PluginEntryPointInterface;
|
||||
use Psalm\Plugin\RegistrationInterface;
|
||||
use SimpleXMLElement;
|
||||
|
||||
/**
|
||||
* @deprecated use `php-standard-library/psalm-plugin` package instead.
|
||||
*
|
||||
* @see https://github.com/php-standard-library/psalm-plugin
|
||||
*/
|
||||
final class Plugin implements PluginEntryPointInterface
|
||||
{
|
||||
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
||||
|
Loading…
Reference in New Issue
Block a user