kuaukutsu / ds-collection
Is the abstract layer which covers functionality the data structure Collection.
Installs: 38 598
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- ext-json: *
- php-ds/php-ds: ^1.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.13
- icanhazstring/composer-unused: ^0.8
- phpunit/phpunit: ^10.4
- rector/rector: ^0.18
- roave/infection-static-analysis-plugin: ^1.3
- roave/security-advisories: dev-latest
- slevomat/coding-standard: ^8.7
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^5.15
README
Коллекция объектов.
Tech Stack
kuaukutsu/ds-collection is built on the following main stack:
- PHP – Languages
- PHPUnit – Testing Frameworks
- GitHub Actions – Continuous Integration
Примеры
$collection = new DtoCollection(); $collection->attach(new Dto(1, 'first')); $collection->attach(new Dto(2, 'second')); $collectionOther = new DtoCollection(); $collectionOther->attach(new Dto(3, 'third')); $collectionOther->attach(new Dto(4, 'fourth')); $collection->merge($collectionOther);
Фильтрация
$collection = new DtoCollection(); $collection->attach(new Dto(1, 'first')); $collection->attach(new Dto(2, 'second')); $collection->attach(new Dto(3, 'first')); $collection->attach(new Dto(4, 'second')); $collectionByFiltered = $collection->filter( static fn(Dto $dto): bool => $dto->name === 'first' );
Сортировка
$collection = new DtoCollection(); $collection->attach(new Dto(1, 'first')); $collection->attach(new Dto(2, 'second')); $collection->attach(new Dto(3, 'first')); $collection->attach(new Dto(4, 'second')); $sortCollection = $collection->sort( static fn(Dto $a, Dto $b): int => strcmp($a->name, $b->name) );
Индексация
В классе коллекции необходимо указать на основании какого свойства объекта индексировать коллекцию.
Это делается при помощи метода indexBy
, например:
/** * @param Dto $item * @return int */ protected function indexBy($item): int { return $item->id; }
/** * @param Dto $item * @return string */ protected function indexBy($item): string { return $item->name; }
Это позволяет получить быстрый доступ к объекту по ключу индекса, например для indexBy по ключу name:
$collection = new DtoCollection(); $collection->attach(new Dto(1, 'first')); $collection->attach(new Dto(2, 'second')); $dto = $collection->get('second');
Составные ключи
Ключ индексирования может быть составным, например:
/** * @param Dto $item * @return array<scalar> */ protected function indexBy($item): array { return [$item->id, $item->name]; }
$collection = new DtoCollection(); $collection->attach(new Dto(1, 'first')); $collection->attach(new Dto(2, 'second')); $collection->attach(new Dto(3, 'third')); $dto = $collection->get(2, 'second');
Feature
- php >= 8.0
- WeakMap (https://www.php.net/manual/ru/class.weakmap.php, https://sergeymukhin.com/blog/php-8-weakmaps-slabye-karty)
Docker
docker pull ghcr.io/kuaukutsu/php:8.1-cli
docker pull ghcr.io/kuaukutsu/php:8.2-cli
Container:
ghcr.io/kuaukutsu/php:${PHP_VERSION}-cli
(default)jakzal/phpqa:php${PHP_VERSION}
shell
docker run --init -it --rm -v "$(pwd):/app" -w /app ghcr.io/kuaukutsu/php:8.1-cli sh
Testing
Unit testing
The package is tested with PHPUnit. To run tests:
make phpunit
PHP_VERSION=7.4 make phpunit
Static analysis
The code is statically analyzed with Psalm. To run static analysis:
make psalm
PHP_VERSION=7.4 make psalm
Code Sniffer
make phpcs
Rector
make rector