├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── examples └── command.php └── src ├── Comparison ├── Comparator.php ├── ComparatorInterface.php └── Result.php ├── Configuration.php ├── Event ├── Emitter.php ├── EmitterInterface.php ├── Event.php ├── EventType.php ├── Producer.php ├── ProducerInterface.php └── RegistryInterface.php ├── Indexer ├── Index.php ├── Indexer.php └── IndexerInterface.php ├── Node ├── Node.php └── Statistics.php └── Watcher.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/examples/command.php -------------------------------------------------------------------------------- /src/Comparison/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Comparison/Comparator.php -------------------------------------------------------------------------------- /src/Comparison/ComparatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Comparison/ComparatorInterface.php -------------------------------------------------------------------------------- /src/Comparison/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Comparison/Result.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Event/Emitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/Emitter.php -------------------------------------------------------------------------------- /src/Event/EmitterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/EmitterInterface.php -------------------------------------------------------------------------------- /src/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/Event.php -------------------------------------------------------------------------------- /src/Event/EventType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/EventType.php -------------------------------------------------------------------------------- /src/Event/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/Producer.php -------------------------------------------------------------------------------- /src/Event/ProducerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/ProducerInterface.php -------------------------------------------------------------------------------- /src/Event/RegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Event/RegistryInterface.php -------------------------------------------------------------------------------- /src/Indexer/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Indexer/Index.php -------------------------------------------------------------------------------- /src/Indexer/Indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Indexer/Indexer.php -------------------------------------------------------------------------------- /src/Indexer/IndexerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Indexer/IndexerInterface.php -------------------------------------------------------------------------------- /src/Node/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Node/Node.php -------------------------------------------------------------------------------- /src/Node/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Node/Statistics.php -------------------------------------------------------------------------------- /src/Watcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azjezz/assess/HEAD/src/Watcher.php --------------------------------------------------------------------------------