├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── box.json ├── composer-integrity.php ├── composer.json ├── composer.lock ├── src ├── CommandProvider.php ├── ComposerIntegrityCommand.php ├── Hasher.php ├── IntegrityCommand.php ├── Package.php ├── PackageResolver │ ├── ComposerStrategy.php │ └── LockReaderStrategy.php ├── PackageResolverStrategy.php ├── PackageSubmitter.php ├── PackageVerdict.php ├── PatchDetector.php ├── PatchPlugin.php ├── PatchPlugin │ ├── Cweagans.php │ └── Vaimo.php ├── Plugin.php ├── VerdictEnricher.php └── VerdictRenderer.php └── test └── composer.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/README.md -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "composer-integrity.php" 3 | } 4 | -------------------------------------------------------------------------------- /composer-integrity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/composer-integrity.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /src/CommandProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/CommandProvider.php -------------------------------------------------------------------------------- /src/ComposerIntegrityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/ComposerIntegrityCommand.php -------------------------------------------------------------------------------- /src/Hasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/Hasher.php -------------------------------------------------------------------------------- /src/IntegrityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/IntegrityCommand.php -------------------------------------------------------------------------------- /src/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/Package.php -------------------------------------------------------------------------------- /src/PackageResolver/ComposerStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PackageResolver/ComposerStrategy.php -------------------------------------------------------------------------------- /src/PackageResolver/LockReaderStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PackageResolver/LockReaderStrategy.php -------------------------------------------------------------------------------- /src/PackageResolverStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PackageResolverStrategy.php -------------------------------------------------------------------------------- /src/PackageSubmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PackageSubmitter.php -------------------------------------------------------------------------------- /src/PackageVerdict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PackageVerdict.php -------------------------------------------------------------------------------- /src/PatchDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PatchDetector.php -------------------------------------------------------------------------------- /src/PatchPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PatchPlugin.php -------------------------------------------------------------------------------- /src/PatchPlugin/Cweagans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PatchPlugin/Cweagans.php -------------------------------------------------------------------------------- /src/PatchPlugin/Vaimo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/PatchPlugin/Vaimo.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/VerdictEnricher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/VerdictEnricher.php -------------------------------------------------------------------------------- /src/VerdictRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/src/VerdictRenderer.php -------------------------------------------------------------------------------- /test/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansecio/composer-integrity-plugin/HEAD/test/composer.json --------------------------------------------------------------------------------