dependabot-composer 0.118.13 → 0.119.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/helpers/.php_cs.cache +1 -0
- data/helpers/vendor/autoload.php +7 -0
- data/helpers/vendor/bin/composer +1 -0
- data/helpers/vendor/bin/jsonlint +1 -0
- data/helpers/vendor/bin/php-cs-fixer +1 -0
- data/helpers/vendor/bin/phpstan +1 -0
- data/helpers/vendor/bin/phpstan.phar +1 -0
- data/helpers/vendor/bin/validate-json +1 -0
- data/helpers/vendor/composer/ClassLoader.php +445 -0
- data/helpers/vendor/composer/LICENSE +21 -0
- data/helpers/vendor/composer/autoload_classmap.php +66 -0
- data/helpers/vendor/composer/autoload_files.php +14 -0
- data/helpers/vendor/composer/autoload_namespaces.php +9 -0
- data/helpers/vendor/composer/autoload_psr4.php +34 -0
- data/helpers/vendor/composer/autoload_real.php +73 -0
- data/helpers/vendor/composer/autoload_static.php +232 -0
- data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
- data/helpers/vendor/composer/ca-bundle/README.md +85 -0
- data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
- data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3466 -0
- data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +325 -0
- data/helpers/vendor/composer/composer/.editorconfig +11 -0
- data/helpers/vendor/composer/composer/.gitattributes +17 -0
- data/helpers/vendor/composer/composer/.gitignore +11 -0
- data/helpers/vendor/composer/composer/CHANGELOG.md +952 -0
- data/helpers/vendor/composer/composer/LICENSE +19 -0
- data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
- data/helpers/vendor/composer/composer/README.md +63 -0
- data/helpers/vendor/composer/composer/bin/compile +31 -0
- data/helpers/vendor/composer/composer/bin/composer +62 -0
- data/helpers/vendor/composer/composer/composer.json +86 -0
- data/helpers/vendor/composer/composer/composer.lock +1425 -0
- data/helpers/vendor/composer/composer/doc/00-intro.md +166 -0
- data/helpers/vendor/composer/composer/doc/01-basic-usage.md +273 -0
- data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
- data/helpers/vendor/composer/composer/doc/03-cli.md +957 -0
- data/helpers/vendor/composer/composer/doc/04-schema.md +958 -0
- data/helpers/vendor/composer/composer/doc/05-repositories.md +719 -0
- data/helpers/vendor/composer/composer/doc/06-config.md +310 -0
- data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
- data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
- data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
- data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
- data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
- data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
- data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
- data/helpers/vendor/composer/composer/doc/articles/scripts.md +372 -0
- data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +322 -0
- data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
- data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
- data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +55 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
- data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
- data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
- data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
- data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
- data/helpers/vendor/composer/composer/res/composer-schema.json +880 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1070 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +312 -0
- data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +48 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +172 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +259 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +166 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +76 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +803 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +423 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +747 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +108 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/FundCommand.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +111 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +168 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +854 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +124 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +165 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +163 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +297 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +146 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +85 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +556 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1211 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +154 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +178 -0
- data/helpers/vendor/composer/composer/src/Composer/Compiler.php +287 -0
- data/helpers/vendor/composer/composer/src/Composer/Composer.php +294 -0
- data/helpers/vendor/composer/composer/src/Composer/Config.php +483 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +277 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +519 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +211 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +83 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +387 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +257 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +268 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php +113 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php +176 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php +394 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php +52 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php +144 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php +113 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php +872 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php +27 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php +244 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php +135 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php +325 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php +64 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php +322 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php +26 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php +116 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php +528 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php +100 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +112 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php +36 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php +225 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php +31 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/TransportException.php +53 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php +293 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php +60 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php +230 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/Event.php +103 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php +571 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php +48 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php +20 -0
- data/helpers/vendor/composer/composer/src/Composer/Exception/NoSslException.php +20 -0
- data/helpers/vendor/composer/composer/src/Composer/Factory.php +653 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/BaseIO.php +284 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +86 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +346 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer.php +1876 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +214 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php +30 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallationManager.php +326 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php +161 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php +79 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php +232 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php +100 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvent.php +65 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvents.php +75 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PearBinaryInstaller.php +144 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PearInstaller.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php +99 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php +151 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonFile.php +319 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +530 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +419 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php +44 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php +105 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php +183 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +86 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +251 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +218 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +104 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +152 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +294 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +264 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +525 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +440 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +389 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +326 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +182 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +406 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +218 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +178 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +841 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php +164 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php +97 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +224 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +349 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +189 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +452 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +243 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php +235 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +567 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +579 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php +236 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +186 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php +397 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php +175 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +117 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/VcsRepository.php +430 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php +54 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/CommandEvent.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/Event.php +133 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
- data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
- data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +719 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +425 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +435 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/PackageSorter.php +92 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +579 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +201 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1147 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +202 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Zip.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
- data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
- data/helpers/vendor/composer/installed.json +1860 -0
- data/helpers/vendor/composer/semver/CHANGELOG.md +78 -0
- data/helpers/vendor/composer/semver/LICENSE +19 -0
- data/helpers/vendor/composer/semver/README.md +70 -0
- data/helpers/vendor/composer/semver/composer.json +57 -0
- data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
- data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
- data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +215 -0
- data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
- data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
- data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
- data/helpers/vendor/composer/semver/src/Semver.php +127 -0
- data/helpers/vendor/composer/semver/src/VersionParser.php +545 -0
- data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +104 -0
- data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
- data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
- data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +125 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +2112 -0
- data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
- data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +74 -0
- data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
- data/helpers/vendor/composer/xdebug-handler/README.md +289 -0
- data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
- data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
- data/helpers/vendor/composer/xdebug-handler/src/Process.php +181 -0
- data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
- data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +572 -0
- data/helpers/vendor/doctrine/annotations/.doctrine-project.json +40 -0
- data/helpers/vendor/doctrine/annotations/CHANGELOG.md +162 -0
- data/helpers/vendor/doctrine/annotations/LICENSE +19 -0
- data/helpers/vendor/doctrine/annotations/README.md +17 -0
- data/helpers/vendor/doctrine/annotations/composer.json +44 -0
- data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +271 -0
- data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +353 -0
- data/helpers/vendor/doctrine/annotations/docs/en/index.rst +97 -0
- data/helpers/vendor/doctrine/annotations/docs/en/sidebar.rst +6 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php +79 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php +47 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php +37 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php +84 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php +54 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php +33 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php +107 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php +197 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +418 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +180 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +278 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php +147 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php +1221 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php +290 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php +119 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php +91 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php +89 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php +127 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php +194 -0
- data/helpers/vendor/doctrine/annotations/phpbench.json.dist +4 -0
- data/helpers/vendor/doctrine/annotations/phpstan.neon +14 -0
- data/helpers/vendor/doctrine/lexer/.doctrine-project.json +17 -0
- data/helpers/vendor/doctrine/lexer/.github/FUNDING.yml +3 -0
- data/helpers/vendor/doctrine/lexer/.gitignore +2 -0
- data/helpers/vendor/doctrine/lexer/LICENSE +19 -0
- data/helpers/vendor/doctrine/lexer/README.md +7 -0
- data/helpers/vendor/doctrine/lexer/composer.json +36 -0
- data/helpers/vendor/doctrine/lexer/docs/en/dql-parser.rst +294 -0
- data/helpers/vendor/doctrine/lexer/docs/en/index.rst +53 -0
- data/helpers/vendor/doctrine/lexer/docs/en/sidebar.rst +6 -0
- data/helpers/vendor/doctrine/lexer/docs/en/simple-parser-example.rst +102 -0
- data/helpers/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php +332 -0
- data/helpers/vendor/doctrine/lexer/phpunit.xml.dist +26 -0
- data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/AbstractLexerTest.php +268 -0
- data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/ConcreteLexer.php +49 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +3249 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2203 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +83 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +530 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +221 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +207 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +135 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +138 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +33 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +194 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +415 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +58 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +637 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +279 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +941 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +323 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +269 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +111 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +57 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +377 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +118 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Event/Event.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +211 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +249 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +89 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +152 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +147 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1070 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +180 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +146 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +228 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +117 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +129 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +106 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +90 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +392 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +436 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +214 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalStaticAccessFixer.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +84 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +101 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +390 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +143 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +500 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +191 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +206 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +242 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +119 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +202 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +232 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +452 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +173 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +85 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +284 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +369 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +750 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +123 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +349 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +77 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +234 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +511 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +424 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +218 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +420 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +378 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +133 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +259 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +178 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +751 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +277 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +534 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +158 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +248 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +191 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +131 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +175 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +320 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +203 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +231 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +833 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +161 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +81 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +66 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +121 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +215 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +131 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +69 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +218 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +443 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +282 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +234 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +278 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +225 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +302 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +270 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +533 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +506 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +278 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +434 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +132 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +139 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +178 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +123 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +190 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +228 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +125 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +97 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +129 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +163 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +223 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +112 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +374 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +170 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +304 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +152 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +164 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +115 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +116 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +400 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +367 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +163 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +202 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +484 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +128 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +54 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +254 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +72 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +45 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +233 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +141 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +100 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +534 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +307 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +136 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +82 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +314 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +262 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +105 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1453 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +743 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +221 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +62 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +196 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +88 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +72 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +111 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +185 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +259 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +254 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +402 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +153 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IsIdenticalConstraint.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
- data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +33 -0
- data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
- data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
- data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
- data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
- data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
- data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
- data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +419 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +88 -0
- data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
- data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
- data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
- data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
- data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
- data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
- data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
- data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
- data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
- data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
- data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
- data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
- data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
- data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
- data/helpers/vendor/phpstan/phpstan/.gitattributes +10 -0
- data/helpers/vendor/phpstan/phpstan/.gitignore +9 -0
- data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
- data/helpers/vendor/phpstan/phpstan/README.md +64 -0
- data/helpers/vendor/phpstan/phpstan/bootstrap.php +43 -0
- data/helpers/vendor/phpstan/phpstan/composer.json +23 -0
- data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +2 -0
- data/helpers/vendor/phpstan/phpstan/phpstan +0 -0
- data/helpers/vendor/phpstan/phpstan/phpstan.phar +0 -0
- data/helpers/vendor/phpstan/phpstan/phpstan.phar.asc +17 -0
- data/helpers/vendor/psr/log/LICENSE +19 -0
- data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
- data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
- data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +125 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +142 -0
- data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +30 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/DummyTest.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +138 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +147 -0
- data/helpers/vendor/psr/log/README.md +58 -0
- data/helpers/vendor/psr/log/composer.json +26 -0
- data/helpers/vendor/seld/jsonlint/.github/FUNDING.yml +2 -0
- data/helpers/vendor/seld/jsonlint/.github/SECURITY.md +6 -0
- data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
- data/helpers/vendor/seld/jsonlint/.travis.yml +31 -0
- data/helpers/vendor/seld/jsonlint/CHANGELOG.md +76 -0
- data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
- data/helpers/vendor/seld/jsonlint/README.md +94 -0
- data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
- data/helpers/vendor/seld/jsonlint/composer.json +24 -0
- data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +231 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
- data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +272 -0
- data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
- data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
- data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
- data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
- data/helpers/vendor/seld/phar-utils/README.md +45 -0
- data/helpers/vendor/seld/phar-utils/composer.json +26 -0
- data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
- data/helpers/vendor/seld/phar-utils/src/Linter.php +110 -0
- data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
- data/helpers/vendor/symfony/console/.gitignore +3 -0
- data/helpers/vendor/symfony/console/Application.php +1271 -0
- data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
- data/helpers/vendor/symfony/console/Command/Command.php +668 -0
- data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
- data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
- data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
- data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
- data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
- data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
- data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
- data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
- data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +157 -0
- data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
- data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
- data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
- data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
- data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
- data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
- data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
- data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
- data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
- data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
- data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
- data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
- data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
- data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
- data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
- data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
- data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
- data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
- data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
- data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +102 -0
- data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
- data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
- data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
- data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
- data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +145 -0
- data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
- data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
- data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +513 -0
- data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
- data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
- data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
- data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
- data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
- data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
- data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
- data/helpers/vendor/symfony/console/Input/Input.php +203 -0
- data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
- data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
- data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
- data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
- data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
- data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
- data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
- data/helpers/vendor/symfony/console/LICENSE +19 -0
- data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
- data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
- data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
- data/helpers/vendor/symfony/console/Output/Output.php +175 -0
- data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
- data/helpers/vendor/symfony/console/Output/StreamOutput.php +120 -0
- data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
- data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
- data/helpers/vendor/symfony/console/Question/Question.php +242 -0
- data/helpers/vendor/symfony/console/README.md +20 -0
- data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
- data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
- data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
- data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
- data/helpers/vendor/symfony/console/Terminal.php +176 -0
- data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
- data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
- data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1772 -0
- data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
- data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
- data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
- data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
- data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
- data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
- data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/ApplicationDescriptionTest.php +53 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
- data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/stream_output_file.txt +0 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
- data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
- data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
- data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
- data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
- data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1115 -0
- data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +214 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
- data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
- data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
- data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
- data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
- data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
- data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +67 -0
- data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
- data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
- data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
- data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
- data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
- data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
- data/helpers/vendor/symfony/console/composer.json +56 -0
- data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
- data/helpers/vendor/symfony/debug/.gitignore +3 -0
- data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
- data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
- data/helpers/vendor/symfony/debug/Debug.php +60 -0
- data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
- data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
- data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
- data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
- data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
- data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
- data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
- data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
- data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
- data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
- data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
- data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
- data/helpers/vendor/symfony/debug/LICENSE +19 -0
- data/helpers/vendor/symfony/debug/README.md +25 -0
- data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
- data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
- data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
- data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
- data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
- data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +448 -0
- data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +660 -0
- data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +314 -0
- data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +184 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
- data/helpers/vendor/symfony/debug/composer.json +40 -0
- data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
- data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
- data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
- data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
- data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
- data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
- data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
- data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
- data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
- data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
- data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
- data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
- data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +143 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
- data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
- data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
- data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
- data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
- data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
- data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
- data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
- data/helpers/vendor/symfony/filesystem/Filesystem.php +774 -0
- data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
- data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
- data/helpers/vendor/symfony/filesystem/README.md +13 -0
- data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
- data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1660 -0
- data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
- data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
- data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
- data/helpers/vendor/symfony/filesystem/composer.json +34 -0
- data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/finder/.gitignore +3 -0
- data/helpers/vendor/symfony/finder/CHANGELOG.md +55 -0
- data/helpers/vendor/symfony/finder/Comparator/Comparator.php +98 -0
- data/helpers/vendor/symfony/finder/Comparator/DateComparator.php +51 -0
- data/helpers/vendor/symfony/finder/Comparator/NumberComparator.php +79 -0
- data/helpers/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
- data/helpers/vendor/symfony/finder/Exception/ExceptionInterface.php +25 -0
- data/helpers/vendor/symfony/finder/Finder.php +759 -0
- data/helpers/vendor/symfony/finder/Glob.php +116 -0
- data/helpers/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
- data/helpers/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
- data/helpers/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +45 -0
- data/helpers/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +84 -0
- data/helpers/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +53 -0
- data/helpers/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
- data/helpers/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +47 -0
- data/helpers/vendor/symfony/finder/Iterator/FilterIterator.php +60 -0
- data/helpers/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +112 -0
- data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
- data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +158 -0
- data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
- data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +80 -0
- data/helpers/vendor/symfony/finder/LICENSE +19 -0
- data/helpers/vendor/symfony/finder/README.md +14 -0
- data/helpers/vendor/symfony/finder/SplFileInfo.php +78 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php +65 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php +64 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php +108 -0
- data/helpers/vendor/symfony/finder/Tests/FinderTest.php +752 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/a +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/a.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/dolor.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/ipsum.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/lorem.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/.dot +1 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/a +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt b/data/helpers/vendor/symfony/finder/Tests/Fixtures/with → space/foo.txt +0 -0
- data/helpers/vendor/symfony/finder/Tests/GlobTest.php +95 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php +44 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +74 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +83 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +80 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +73 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php +86 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php +54 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilterIteratorTest.php +53 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/Iterator.php +55 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +93 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php +21 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php +132 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php +71 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php +82 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php +119 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +69 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +179 -0
- data/helpers/vendor/symfony/finder/composer.json +33 -0
- data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
- data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
- data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
- data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
- data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
- data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
- data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
- data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
- data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
- data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
- data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
- data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1085 -0
- data/helpers/vendor/symfony/options-resolver/README.md +15 -0
- data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
- data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1626 -0
- data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
- data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
- data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
- data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
- data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +46 -0
- data/helpers/vendor/symfony/polyfill-ctype/composer.json +38 -0
- data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +847 -0
- data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1414 -0
- data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +141 -0
- data/helpers/vendor/symfony/polyfill-mbstring/composer.json +38 -0
- data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
- data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +30 -0
- data/helpers/vendor/symfony/polyfill-php70/composer.json +37 -0
- data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-php72/Php72.php +217 -0
- data/helpers/vendor/symfony/polyfill-php72/README.md +28 -0
- data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +57 -0
- data/helpers/vendor/symfony/polyfill-php72/composer.json +35 -0
- data/helpers/vendor/symfony/process/.gitignore +3 -0
- data/helpers/vendor/symfony/process/CHANGELOG.md +57 -0
- data/helpers/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
- data/helpers/vendor/symfony/process/Exception/LogicException.php +21 -0
- data/helpers/vendor/symfony/process/Exception/ProcessFailedException.php +54 -0
- data/helpers/vendor/symfony/process/Exception/ProcessTimedOutException.php +69 -0
- data/helpers/vendor/symfony/process/Exception/RuntimeException.php +21 -0
- data/helpers/vendor/symfony/process/ExecutableFinder.php +88 -0
- data/helpers/vendor/symfony/process/InputStream.php +92 -0
- data/helpers/vendor/symfony/process/LICENSE +19 -0
- data/helpers/vendor/symfony/process/PhpExecutableFinder.php +94 -0
- data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
- data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +182 -0
- data/helpers/vendor/symfony/process/Pipes/PipesInterface.php +67 -0
- data/helpers/vendor/symfony/process/Pipes/UnixPipes.php +153 -0
- data/helpers/vendor/symfony/process/Pipes/WindowsPipes.php +191 -0
- data/helpers/vendor/symfony/process/Process.php +1746 -0
- data/helpers/vendor/symfony/process/ProcessBuilder.php +280 -0
- data/helpers/vendor/symfony/process/ProcessUtils.php +123 -0
- data/helpers/vendor/symfony/process/README.md +13 -0
- data/helpers/vendor/symfony/process/Tests/ErrorProcessInitiator.php +36 -0
- data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +175 -0
- data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
- data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +72 -0
- data/helpers/vendor/symfony/process/Tests/PhpProcessTest.php +48 -0
- data/helpers/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php +72 -0
- data/helpers/vendor/symfony/process/Tests/ProcessBuilderTest.php +220 -0
- data/helpers/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +133 -0
- data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1596 -0
- data/helpers/vendor/symfony/process/Tests/ProcessUtilsTest.php +53 -0
- data/helpers/vendor/symfony/process/Tests/SignalListener.php +21 -0
- data/helpers/vendor/symfony/process/composer.json +33 -0
- data/helpers/vendor/symfony/process/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
- data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
- data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
- data/helpers/vendor/symfony/stopwatch/README.md +13 -0
- data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
- data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
- data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +254 -0
- data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +210 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
- data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
- data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
- metadata +1564 -8
@@ -0,0 +1,104 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
|
+
|
6
|
+
## [master]
|
7
|
+
|
8
|
+
...
|
9
|
+
|
10
|
+
## [1.5.4] 2020-07-15
|
11
|
+
|
12
|
+
* Changed: updated licenses list to SPDX 3.9
|
13
|
+
|
14
|
+
## [1.5.3] 2020-02-14
|
15
|
+
|
16
|
+
* Changed: updated licenses list to SPDX 3.8
|
17
|
+
|
18
|
+
## [1.5.2] 2019-07-29
|
19
|
+
|
20
|
+
* Changed: updated licenses list to SPDX 3.6
|
21
|
+
|
22
|
+
## [1.5.1] 2019-03-26
|
23
|
+
|
24
|
+
* Changed: updated licenses list to SPDX 3.4
|
25
|
+
|
26
|
+
## [1.5.0] 2018-11-01
|
27
|
+
|
28
|
+
* Changed: updated licenses list to SPDX 3.3
|
29
|
+
|
30
|
+
## [1.4.0] 2018-05-04
|
31
|
+
|
32
|
+
* Changed: updated licenses list to SPDX 3.1
|
33
|
+
|
34
|
+
## [1.3.0] 2018-01-31
|
35
|
+
|
36
|
+
* Added: `SpdxLicenses::getLicenses` to get the whole list of methods.
|
37
|
+
* Changed: license identifiers are now case insensitive.
|
38
|
+
|
39
|
+
## [1.2.0] 2018-01-03
|
40
|
+
|
41
|
+
* Added: deprecation status for all licenses and a `SpdxLicenses::isDeprecatedByIdentifier` method.
|
42
|
+
* Changed: updated licenses list to SPDX 3.0.
|
43
|
+
|
44
|
+
## [1.1.6] 2017-04-03
|
45
|
+
|
46
|
+
* Changed: updated licenses list.
|
47
|
+
|
48
|
+
## [1.1.5] 2016-09-28
|
49
|
+
|
50
|
+
* Changed: updated licenses list.
|
51
|
+
|
52
|
+
## [1.1.4] 2016-05-04
|
53
|
+
|
54
|
+
* Changed: updated licenses list.
|
55
|
+
|
56
|
+
## [1.1.3] 2016-03-25
|
57
|
+
|
58
|
+
* Changed: updated licenses list.
|
59
|
+
* Changed: dropped `test` namespace.
|
60
|
+
* Changed: tedious small things.
|
61
|
+
|
62
|
+
## [1.1.2] 2015-10-05
|
63
|
+
|
64
|
+
* Changed: updated licenses list.
|
65
|
+
|
66
|
+
## [1.1.1] 2015-09-07
|
67
|
+
|
68
|
+
* Changed: improved performance when looking up just one license.
|
69
|
+
* Changed: updated licenses list.
|
70
|
+
|
71
|
+
## [1.1.0] 2015-07-17
|
72
|
+
|
73
|
+
* Changed: updater now sorts licenses and exceptions by key.
|
74
|
+
* Changed: filenames now class constants of SpdxLicenses (`LICENSES_FILE` and `EXCEPTIONS_FILE`).
|
75
|
+
* Changed: resources directory now available via static method `SpdxLicenses::getResourcesDir()`.
|
76
|
+
* Changed: updated licenses list.
|
77
|
+
* Changed: removed json-schema requirement.
|
78
|
+
|
79
|
+
## [1.0.0] 2015-07-15
|
80
|
+
|
81
|
+
* Break: the following classes and namespaces were renamed:
|
82
|
+
- Namespace: `Composer\Util` -> `Composer\Spdx`
|
83
|
+
- Classname: `SpdxLicense` -> `SpdxLicenses`
|
84
|
+
- Classname: `SpdxLicenseTest` -> `SpdxLicensesTest`
|
85
|
+
- Classname: `Updater` -> `SpdxLicensesUpdater`
|
86
|
+
* Changed: validation via regex implementation instead of lexer.
|
87
|
+
|
88
|
+
[master]: https://github.com/composer/spdx-licenses/compare/1.5.4...master
|
89
|
+
[1.5.4]: https://github.com/composer/spdx-licenses/compare/1.5.3...1.5.4
|
90
|
+
[1.5.3]: https://github.com/composer/spdx-licenses/compare/1.5.2...1.5.3
|
91
|
+
[1.5.2]: https://github.com/composer/spdx-licenses/compare/1.5.1...1.5.2
|
92
|
+
[1.5.1]: https://github.com/composer/spdx-licenses/compare/1.5.0...1.5.1
|
93
|
+
[1.5.0]: https://github.com/composer/spdx-licenses/compare/1.4.0...1.5.0
|
94
|
+
[1.4.0]: https://github.com/composer/spdx-licenses/compare/1.3.0...1.4.0
|
95
|
+
[1.3.0]: https://github.com/composer/spdx-licenses/compare/1.2.0...1.3.0
|
96
|
+
[1.2.0]: https://github.com/composer/spdx-licenses/compare/1.1.6...1.2.0
|
97
|
+
[1.1.6]: https://github.com/composer/spdx-licenses/compare/1.1.5...1.1.6
|
98
|
+
[1.1.5]: https://github.com/composer/spdx-licenses/compare/1.1.4...1.1.5
|
99
|
+
[1.1.4]: https://github.com/composer/spdx-licenses/compare/1.1.3...1.1.4
|
100
|
+
[1.1.3]: https://github.com/composer/spdx-licenses/compare/1.1.2...1.1.3
|
101
|
+
[1.1.2]: https://github.com/composer/spdx-licenses/compare/1.1.1...1.1.2
|
102
|
+
[1.1.1]: https://github.com/composer/spdx-licenses/compare/1.1.0...1.1.1
|
103
|
+
[1.1.0]: https://github.com/composer/spdx-licenses/compare/1.0.0...1.1.0
|
104
|
+
[1.0.0]: https://github.com/composer/spdx-licenses/compare/0281a7fe7820c990db3058844e7d448d7b70e3ac...1.0.0
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (C) 2015 Composer
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
8
|
+
so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
+
SOFTWARE.
|
@@ -0,0 +1,69 @@
|
|
1
|
+
composer/spdx-licenses
|
2
|
+
======================
|
3
|
+
|
4
|
+
SPDX (Software Package Data Exchange) licenses list and validation library.
|
5
|
+
|
6
|
+
Originally written as part of [composer/composer](https://github.com/composer/composer),
|
7
|
+
now extracted and made available as a stand-alone library.
|
8
|
+
|
9
|
+
[![Build Status](https://travis-ci.org/composer/spdx-licenses.svg?branch=master)](https://travis-ci.org/composer/spdx-licenses)
|
10
|
+
|
11
|
+
Installation
|
12
|
+
------------
|
13
|
+
|
14
|
+
Install the latest version with:
|
15
|
+
|
16
|
+
```bash
|
17
|
+
$ composer require composer/spdx-licenses
|
18
|
+
```
|
19
|
+
|
20
|
+
Basic Usage
|
21
|
+
-----------
|
22
|
+
|
23
|
+
```php
|
24
|
+
<?php
|
25
|
+
|
26
|
+
use Composer\Spdx\SpdxLicenses;
|
27
|
+
|
28
|
+
$licenses = new SpdxLicenses();
|
29
|
+
|
30
|
+
// get a license by identifier
|
31
|
+
$licenses->getLicenseByIdentifier('MIT');
|
32
|
+
|
33
|
+
// get a license exception by identifier
|
34
|
+
$licenses->getExceptionByIdentifier('Autoconf-exception-3.0');
|
35
|
+
|
36
|
+
// get a license identifier by name
|
37
|
+
$licenses->getIdentifierByName('MIT License');
|
38
|
+
|
39
|
+
// check if a license is OSI approved by identifier
|
40
|
+
$licenses->isOsiApprovedByIdentifier('MIT');
|
41
|
+
|
42
|
+
// check if a license identifier is deprecated
|
43
|
+
$licenses->isDeprecatedByIdentifier('MIT');
|
44
|
+
|
45
|
+
// check if input is a valid SPDX license expression
|
46
|
+
$licenses->validate($input);
|
47
|
+
```
|
48
|
+
|
49
|
+
> Read the [specifications](https://spdx.org/specifications)
|
50
|
+
> to find out more about valid license expressions.
|
51
|
+
|
52
|
+
Requirements
|
53
|
+
------------
|
54
|
+
|
55
|
+
* PHP 5.3.2 is required but using the latest version of PHP is highly recommended.
|
56
|
+
|
57
|
+
License
|
58
|
+
-------
|
59
|
+
|
60
|
+
composer/spdx-licenses is licensed under the MIT License, see the LICENSE file for details.
|
61
|
+
|
62
|
+
Source
|
63
|
+
------
|
64
|
+
|
65
|
+
License information is curated by [SPDX](https://spdx.org/). The data is pulled from the
|
66
|
+
[License List Data](https://github.com/spdx/license-list-data) repository.
|
67
|
+
|
68
|
+
* [Licenses](https://spdx.org/licenses/index.html)
|
69
|
+
* [License Exceptions](https://spdx.org/licenses/exceptions-index.html)
|
@@ -0,0 +1,56 @@
|
|
1
|
+
{
|
2
|
+
"name": "composer/spdx-licenses",
|
3
|
+
"description": "SPDX licenses list and validation library.",
|
4
|
+
"type": "library",
|
5
|
+
"license": "MIT",
|
6
|
+
"keywords": [
|
7
|
+
"spdx",
|
8
|
+
"license",
|
9
|
+
"validator"
|
10
|
+
],
|
11
|
+
"authors": [
|
12
|
+
{
|
13
|
+
"name": "Nils Adermann",
|
14
|
+
"email": "naderman@naderman.de",
|
15
|
+
"homepage": "http://www.naderman.de"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "Jordi Boggiano",
|
19
|
+
"email": "j.boggiano@seld.be",
|
20
|
+
"homepage": "http://seld.be"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name": "Rob Bast",
|
24
|
+
"email": "rob.bast@gmail.com",
|
25
|
+
"homepage": "http://robbast.nl"
|
26
|
+
}
|
27
|
+
],
|
28
|
+
"support": {
|
29
|
+
"irc": "irc://irc.freenode.org/composer",
|
30
|
+
"issues": "https://github.com/composer/spdx-licenses/issues"
|
31
|
+
},
|
32
|
+
"require": {
|
33
|
+
"php": "^5.3.2 || ^7.0 || ^8.0"
|
34
|
+
},
|
35
|
+
"require-dev": {
|
36
|
+
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
|
37
|
+
},
|
38
|
+
"autoload": {
|
39
|
+
"psr-4": {
|
40
|
+
"Composer\\Spdx\\": "src"
|
41
|
+
}
|
42
|
+
},
|
43
|
+
"autoload-dev": {
|
44
|
+
"psr-4": {
|
45
|
+
"Composer\\Spdx\\": "tests"
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"extra": {
|
49
|
+
"branch-alias": {
|
50
|
+
"dev-master": "1.x-dev"
|
51
|
+
}
|
52
|
+
},
|
53
|
+
"scripts": {
|
54
|
+
"test": "phpunit"
|
55
|
+
}
|
56
|
+
}
|
@@ -0,0 +1,125 @@
|
|
1
|
+
{
|
2
|
+
"389-exception": [
|
3
|
+
"389 Directory Server Exception"
|
4
|
+
],
|
5
|
+
"Autoconf-exception-2.0": [
|
6
|
+
"Autoconf exception 2.0"
|
7
|
+
],
|
8
|
+
"Autoconf-exception-3.0": [
|
9
|
+
"Autoconf exception 3.0"
|
10
|
+
],
|
11
|
+
"Bison-exception-2.2": [
|
12
|
+
"Bison exception 2.2"
|
13
|
+
],
|
14
|
+
"Bootloader-exception": [
|
15
|
+
"Bootloader Distribution Exception"
|
16
|
+
],
|
17
|
+
"Classpath-exception-2.0": [
|
18
|
+
"Classpath exception 2.0"
|
19
|
+
],
|
20
|
+
"CLISP-exception-2.0": [
|
21
|
+
"CLISP exception 2.0"
|
22
|
+
],
|
23
|
+
"DigiRule-FOSS-exception": [
|
24
|
+
"DigiRule FOSS License Exception"
|
25
|
+
],
|
26
|
+
"eCos-exception-2.0": [
|
27
|
+
"eCos exception 2.0"
|
28
|
+
],
|
29
|
+
"Fawkes-Runtime-exception": [
|
30
|
+
"Fawkes Runtime Exception"
|
31
|
+
],
|
32
|
+
"FLTK-exception": [
|
33
|
+
"FLTK exception"
|
34
|
+
],
|
35
|
+
"Font-exception-2.0": [
|
36
|
+
"Font exception 2.0"
|
37
|
+
],
|
38
|
+
"freertos-exception-2.0": [
|
39
|
+
"FreeRTOS Exception 2.0"
|
40
|
+
],
|
41
|
+
"GCC-exception-2.0": [
|
42
|
+
"GCC Runtime Library exception 2.0"
|
43
|
+
],
|
44
|
+
"GCC-exception-3.1": [
|
45
|
+
"GCC Runtime Library exception 3.1"
|
46
|
+
],
|
47
|
+
"gnu-javamail-exception": [
|
48
|
+
"GNU JavaMail exception"
|
49
|
+
],
|
50
|
+
"GPL-3.0-linking-exception": [
|
51
|
+
"GPL-3.0 Linking Exception"
|
52
|
+
],
|
53
|
+
"GPL-3.0-linking-source-exception": [
|
54
|
+
"GPL-3.0 Linking Exception (with Corresponding Source)"
|
55
|
+
],
|
56
|
+
"GPL-CC-1.0": [
|
57
|
+
"GPL Cooperation Commitment 1.0"
|
58
|
+
],
|
59
|
+
"i2p-gpl-java-exception": [
|
60
|
+
"i2p GPL+Java Exception"
|
61
|
+
],
|
62
|
+
"LGPL-3.0-linking-exception": [
|
63
|
+
"LGPL-3.0 Linking Exception"
|
64
|
+
],
|
65
|
+
"Libtool-exception": [
|
66
|
+
"Libtool Exception"
|
67
|
+
],
|
68
|
+
"Linux-syscall-note": [
|
69
|
+
"Linux Syscall Note"
|
70
|
+
],
|
71
|
+
"LLVM-exception": [
|
72
|
+
"LLVM Exception"
|
73
|
+
],
|
74
|
+
"LZMA-exception": [
|
75
|
+
"LZMA exception"
|
76
|
+
],
|
77
|
+
"mif-exception": [
|
78
|
+
"Macros and Inline Functions Exception"
|
79
|
+
],
|
80
|
+
"Nokia-Qt-exception-1.1": [
|
81
|
+
"Nokia Qt LGPL exception 1.1"
|
82
|
+
],
|
83
|
+
"OCaml-LGPL-linking-exception": [
|
84
|
+
"OCaml LGPL Linking Exception"
|
85
|
+
],
|
86
|
+
"OCCT-exception-1.0": [
|
87
|
+
"Open CASCADE Exception 1.0"
|
88
|
+
],
|
89
|
+
"OpenJDK-assembly-exception-1.0": [
|
90
|
+
"OpenJDK Assembly exception 1.0"
|
91
|
+
],
|
92
|
+
"openvpn-openssl-exception": [
|
93
|
+
"OpenVPN OpenSSL Exception"
|
94
|
+
],
|
95
|
+
"PS-or-PDF-font-exception-20170817": [
|
96
|
+
"PS/PDF font exception (2017-08-17)"
|
97
|
+
],
|
98
|
+
"Qt-GPL-exception-1.0": [
|
99
|
+
"Qt GPL exception 1.0"
|
100
|
+
],
|
101
|
+
"Qt-LGPL-exception-1.1": [
|
102
|
+
"Qt LGPL exception 1.1"
|
103
|
+
],
|
104
|
+
"Qwt-exception-1.0": [
|
105
|
+
"Qwt exception 1.0"
|
106
|
+
],
|
107
|
+
"SHL-2.0": [
|
108
|
+
"Solderpad Hardware License v2.0"
|
109
|
+
],
|
110
|
+
"SHL-2.1": [
|
111
|
+
"Solderpad Hardware License v2.1"
|
112
|
+
],
|
113
|
+
"Swift-exception": [
|
114
|
+
"Swift Exception"
|
115
|
+
],
|
116
|
+
"u-boot-exception-2.0": [
|
117
|
+
"U-Boot exception 2.0"
|
118
|
+
],
|
119
|
+
"Universal-FOSS-exception-1.0": [
|
120
|
+
"Universal FOSS Exception, Version 1.0"
|
121
|
+
],
|
122
|
+
"WxWindows-exception-3.1": [
|
123
|
+
"WxWindows Library Exception 3.1"
|
124
|
+
]
|
125
|
+
}
|
@@ -0,0 +1,2112 @@
|
|
1
|
+
{
|
2
|
+
"0BSD": [
|
3
|
+
"BSD Zero Clause License",
|
4
|
+
true,
|
5
|
+
false
|
6
|
+
],
|
7
|
+
"AAL": [
|
8
|
+
"Attribution Assurance License",
|
9
|
+
true,
|
10
|
+
false
|
11
|
+
],
|
12
|
+
"Abstyles": [
|
13
|
+
"Abstyles License",
|
14
|
+
false,
|
15
|
+
false
|
16
|
+
],
|
17
|
+
"Adobe-2006": [
|
18
|
+
"Adobe Systems Incorporated Source Code License Agreement",
|
19
|
+
false,
|
20
|
+
false
|
21
|
+
],
|
22
|
+
"Adobe-Glyph": [
|
23
|
+
"Adobe Glyph List License",
|
24
|
+
false,
|
25
|
+
false
|
26
|
+
],
|
27
|
+
"ADSL": [
|
28
|
+
"Amazon Digital Services License",
|
29
|
+
false,
|
30
|
+
false
|
31
|
+
],
|
32
|
+
"AFL-1.1": [
|
33
|
+
"Academic Free License v1.1",
|
34
|
+
true,
|
35
|
+
false
|
36
|
+
],
|
37
|
+
"AFL-1.2": [
|
38
|
+
"Academic Free License v1.2",
|
39
|
+
true,
|
40
|
+
false
|
41
|
+
],
|
42
|
+
"AFL-2.0": [
|
43
|
+
"Academic Free License v2.0",
|
44
|
+
true,
|
45
|
+
false
|
46
|
+
],
|
47
|
+
"AFL-2.1": [
|
48
|
+
"Academic Free License v2.1",
|
49
|
+
true,
|
50
|
+
false
|
51
|
+
],
|
52
|
+
"AFL-3.0": [
|
53
|
+
"Academic Free License v3.0",
|
54
|
+
true,
|
55
|
+
false
|
56
|
+
],
|
57
|
+
"Afmparse": [
|
58
|
+
"Afmparse License",
|
59
|
+
false,
|
60
|
+
false
|
61
|
+
],
|
62
|
+
"AGPL-1.0": [
|
63
|
+
"Affero General Public License v1.0",
|
64
|
+
false,
|
65
|
+
true
|
66
|
+
],
|
67
|
+
"AGPL-1.0-only": [
|
68
|
+
"Affero General Public License v1.0 only",
|
69
|
+
false,
|
70
|
+
false
|
71
|
+
],
|
72
|
+
"AGPL-1.0-or-later": [
|
73
|
+
"Affero General Public License v1.0 or later",
|
74
|
+
false,
|
75
|
+
false
|
76
|
+
],
|
77
|
+
"AGPL-3.0": [
|
78
|
+
"GNU Affero General Public License v3.0",
|
79
|
+
true,
|
80
|
+
true
|
81
|
+
],
|
82
|
+
"AGPL-3.0-only": [
|
83
|
+
"GNU Affero General Public License v3.0 only",
|
84
|
+
true,
|
85
|
+
false
|
86
|
+
],
|
87
|
+
"AGPL-3.0-or-later": [
|
88
|
+
"GNU Affero General Public License v3.0 or later",
|
89
|
+
true,
|
90
|
+
false
|
91
|
+
],
|
92
|
+
"Aladdin": [
|
93
|
+
"Aladdin Free Public License",
|
94
|
+
false,
|
95
|
+
false
|
96
|
+
],
|
97
|
+
"AMDPLPA": [
|
98
|
+
"AMD's plpa_map.c License",
|
99
|
+
false,
|
100
|
+
false
|
101
|
+
],
|
102
|
+
"AML": [
|
103
|
+
"Apple MIT License",
|
104
|
+
false,
|
105
|
+
false
|
106
|
+
],
|
107
|
+
"AMPAS": [
|
108
|
+
"Academy of Motion Picture Arts and Sciences BSD",
|
109
|
+
false,
|
110
|
+
false
|
111
|
+
],
|
112
|
+
"ANTLR-PD": [
|
113
|
+
"ANTLR Software Rights Notice",
|
114
|
+
false,
|
115
|
+
false
|
116
|
+
],
|
117
|
+
"Apache-1.0": [
|
118
|
+
"Apache License 1.0",
|
119
|
+
false,
|
120
|
+
false
|
121
|
+
],
|
122
|
+
"Apache-1.1": [
|
123
|
+
"Apache License 1.1",
|
124
|
+
true,
|
125
|
+
false
|
126
|
+
],
|
127
|
+
"Apache-2.0": [
|
128
|
+
"Apache License 2.0",
|
129
|
+
true,
|
130
|
+
false
|
131
|
+
],
|
132
|
+
"APAFML": [
|
133
|
+
"Adobe Postscript AFM License",
|
134
|
+
false,
|
135
|
+
false
|
136
|
+
],
|
137
|
+
"APL-1.0": [
|
138
|
+
"Adaptive Public License 1.0",
|
139
|
+
true,
|
140
|
+
false
|
141
|
+
],
|
142
|
+
"APSL-1.0": [
|
143
|
+
"Apple Public Source License 1.0",
|
144
|
+
true,
|
145
|
+
false
|
146
|
+
],
|
147
|
+
"APSL-1.1": [
|
148
|
+
"Apple Public Source License 1.1",
|
149
|
+
true,
|
150
|
+
false
|
151
|
+
],
|
152
|
+
"APSL-1.2": [
|
153
|
+
"Apple Public Source License 1.2",
|
154
|
+
true,
|
155
|
+
false
|
156
|
+
],
|
157
|
+
"APSL-2.0": [
|
158
|
+
"Apple Public Source License 2.0",
|
159
|
+
true,
|
160
|
+
false
|
161
|
+
],
|
162
|
+
"Artistic-1.0": [
|
163
|
+
"Artistic License 1.0",
|
164
|
+
true,
|
165
|
+
false
|
166
|
+
],
|
167
|
+
"Artistic-1.0-cl8": [
|
168
|
+
"Artistic License 1.0 w/clause 8",
|
169
|
+
true,
|
170
|
+
false
|
171
|
+
],
|
172
|
+
"Artistic-1.0-Perl": [
|
173
|
+
"Artistic License 1.0 (Perl)",
|
174
|
+
true,
|
175
|
+
false
|
176
|
+
],
|
177
|
+
"Artistic-2.0": [
|
178
|
+
"Artistic License 2.0",
|
179
|
+
true,
|
180
|
+
false
|
181
|
+
],
|
182
|
+
"Bahyph": [
|
183
|
+
"Bahyph License",
|
184
|
+
false,
|
185
|
+
false
|
186
|
+
],
|
187
|
+
"Barr": [
|
188
|
+
"Barr License",
|
189
|
+
false,
|
190
|
+
false
|
191
|
+
],
|
192
|
+
"Beerware": [
|
193
|
+
"Beerware License",
|
194
|
+
false,
|
195
|
+
false
|
196
|
+
],
|
197
|
+
"BitTorrent-1.0": [
|
198
|
+
"BitTorrent Open Source License v1.0",
|
199
|
+
false,
|
200
|
+
false
|
201
|
+
],
|
202
|
+
"BitTorrent-1.1": [
|
203
|
+
"BitTorrent Open Source License v1.1",
|
204
|
+
false,
|
205
|
+
false
|
206
|
+
],
|
207
|
+
"blessing": [
|
208
|
+
"SQLite Blessing",
|
209
|
+
false,
|
210
|
+
false
|
211
|
+
],
|
212
|
+
"BlueOak-1.0.0": [
|
213
|
+
"Blue Oak Model License 1.0.0",
|
214
|
+
false,
|
215
|
+
false
|
216
|
+
],
|
217
|
+
"Borceux": [
|
218
|
+
"Borceux license",
|
219
|
+
false,
|
220
|
+
false
|
221
|
+
],
|
222
|
+
"BSD-1-Clause": [
|
223
|
+
"BSD 1-Clause License",
|
224
|
+
true,
|
225
|
+
false
|
226
|
+
],
|
227
|
+
"BSD-2-Clause": [
|
228
|
+
"BSD 2-Clause \"Simplified\" License",
|
229
|
+
true,
|
230
|
+
false
|
231
|
+
],
|
232
|
+
"BSD-2-Clause-FreeBSD": [
|
233
|
+
"BSD 2-Clause FreeBSD License",
|
234
|
+
false,
|
235
|
+
false
|
236
|
+
],
|
237
|
+
"BSD-2-Clause-NetBSD": [
|
238
|
+
"BSD 2-Clause NetBSD License",
|
239
|
+
false,
|
240
|
+
true
|
241
|
+
],
|
242
|
+
"BSD-2-Clause-Patent": [
|
243
|
+
"BSD-2-Clause Plus Patent License",
|
244
|
+
true,
|
245
|
+
false
|
246
|
+
],
|
247
|
+
"BSD-3-Clause": [
|
248
|
+
"BSD 3-Clause \"New\" or \"Revised\" License",
|
249
|
+
true,
|
250
|
+
false
|
251
|
+
],
|
252
|
+
"BSD-3-Clause-Attribution": [
|
253
|
+
"BSD with attribution",
|
254
|
+
false,
|
255
|
+
false
|
256
|
+
],
|
257
|
+
"BSD-3-Clause-Clear": [
|
258
|
+
"BSD 3-Clause Clear License",
|
259
|
+
false,
|
260
|
+
false
|
261
|
+
],
|
262
|
+
"BSD-3-Clause-LBNL": [
|
263
|
+
"Lawrence Berkeley National Labs BSD variant license",
|
264
|
+
true,
|
265
|
+
false
|
266
|
+
],
|
267
|
+
"BSD-3-Clause-No-Nuclear-License": [
|
268
|
+
"BSD 3-Clause No Nuclear License",
|
269
|
+
false,
|
270
|
+
false
|
271
|
+
],
|
272
|
+
"BSD-3-Clause-No-Nuclear-License-2014": [
|
273
|
+
"BSD 3-Clause No Nuclear License 2014",
|
274
|
+
false,
|
275
|
+
false
|
276
|
+
],
|
277
|
+
"BSD-3-Clause-No-Nuclear-Warranty": [
|
278
|
+
"BSD 3-Clause No Nuclear Warranty",
|
279
|
+
false,
|
280
|
+
false
|
281
|
+
],
|
282
|
+
"BSD-3-Clause-Open-MPI": [
|
283
|
+
"BSD 3-Clause Open MPI variant",
|
284
|
+
false,
|
285
|
+
false
|
286
|
+
],
|
287
|
+
"BSD-4-Clause": [
|
288
|
+
"BSD 4-Clause \"Original\" or \"Old\" License",
|
289
|
+
false,
|
290
|
+
false
|
291
|
+
],
|
292
|
+
"BSD-4-Clause-UC": [
|
293
|
+
"BSD-4-Clause (University of California-Specific)",
|
294
|
+
false,
|
295
|
+
false
|
296
|
+
],
|
297
|
+
"BSD-Protection": [
|
298
|
+
"BSD Protection License",
|
299
|
+
false,
|
300
|
+
false
|
301
|
+
],
|
302
|
+
"BSD-Source-Code": [
|
303
|
+
"BSD Source Code Attribution",
|
304
|
+
false,
|
305
|
+
false
|
306
|
+
],
|
307
|
+
"BSL-1.0": [
|
308
|
+
"Boost Software License 1.0",
|
309
|
+
true,
|
310
|
+
false
|
311
|
+
],
|
312
|
+
"bzip2-1.0.5": [
|
313
|
+
"bzip2 and libbzip2 License v1.0.5",
|
314
|
+
false,
|
315
|
+
false
|
316
|
+
],
|
317
|
+
"bzip2-1.0.6": [
|
318
|
+
"bzip2 and libbzip2 License v1.0.6",
|
319
|
+
false,
|
320
|
+
false
|
321
|
+
],
|
322
|
+
"CAL-1.0": [
|
323
|
+
"Cryptographic Autonomy License 1.0",
|
324
|
+
true,
|
325
|
+
false
|
326
|
+
],
|
327
|
+
"CAL-1.0-Combined-Work-Exception": [
|
328
|
+
"Cryptographic Autonomy License 1.0 (Combined Work Exception)",
|
329
|
+
true,
|
330
|
+
false
|
331
|
+
],
|
332
|
+
"Caldera": [
|
333
|
+
"Caldera License",
|
334
|
+
false,
|
335
|
+
false
|
336
|
+
],
|
337
|
+
"CATOSL-1.1": [
|
338
|
+
"Computer Associates Trusted Open Source License 1.1",
|
339
|
+
true,
|
340
|
+
false
|
341
|
+
],
|
342
|
+
"CC-BY-1.0": [
|
343
|
+
"Creative Commons Attribution 1.0 Generic",
|
344
|
+
false,
|
345
|
+
false
|
346
|
+
],
|
347
|
+
"CC-BY-2.0": [
|
348
|
+
"Creative Commons Attribution 2.0 Generic",
|
349
|
+
false,
|
350
|
+
false
|
351
|
+
],
|
352
|
+
"CC-BY-2.5": [
|
353
|
+
"Creative Commons Attribution 2.5 Generic",
|
354
|
+
false,
|
355
|
+
false
|
356
|
+
],
|
357
|
+
"CC-BY-3.0": [
|
358
|
+
"Creative Commons Attribution 3.0 Unported",
|
359
|
+
false,
|
360
|
+
false
|
361
|
+
],
|
362
|
+
"CC-BY-4.0": [
|
363
|
+
"Creative Commons Attribution 4.0 International",
|
364
|
+
false,
|
365
|
+
false
|
366
|
+
],
|
367
|
+
"CC-BY-NC-1.0": [
|
368
|
+
"Creative Commons Attribution Non Commercial 1.0 Generic",
|
369
|
+
false,
|
370
|
+
false
|
371
|
+
],
|
372
|
+
"CC-BY-NC-2.0": [
|
373
|
+
"Creative Commons Attribution Non Commercial 2.0 Generic",
|
374
|
+
false,
|
375
|
+
false
|
376
|
+
],
|
377
|
+
"CC-BY-NC-2.5": [
|
378
|
+
"Creative Commons Attribution Non Commercial 2.5 Generic",
|
379
|
+
false,
|
380
|
+
false
|
381
|
+
],
|
382
|
+
"CC-BY-NC-3.0": [
|
383
|
+
"Creative Commons Attribution Non Commercial 3.0 Unported",
|
384
|
+
false,
|
385
|
+
false
|
386
|
+
],
|
387
|
+
"CC-BY-NC-4.0": [
|
388
|
+
"Creative Commons Attribution Non Commercial 4.0 International",
|
389
|
+
false,
|
390
|
+
false
|
391
|
+
],
|
392
|
+
"CC-BY-NC-ND-1.0": [
|
393
|
+
"Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic",
|
394
|
+
false,
|
395
|
+
false
|
396
|
+
],
|
397
|
+
"CC-BY-NC-ND-2.0": [
|
398
|
+
"Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic",
|
399
|
+
false,
|
400
|
+
false
|
401
|
+
],
|
402
|
+
"CC-BY-NC-ND-2.5": [
|
403
|
+
"Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic",
|
404
|
+
false,
|
405
|
+
false
|
406
|
+
],
|
407
|
+
"CC-BY-NC-ND-3.0": [
|
408
|
+
"Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported",
|
409
|
+
false,
|
410
|
+
false
|
411
|
+
],
|
412
|
+
"CC-BY-NC-ND-4.0": [
|
413
|
+
"Creative Commons Attribution Non Commercial No Derivatives 4.0 International",
|
414
|
+
false,
|
415
|
+
false
|
416
|
+
],
|
417
|
+
"CC-BY-NC-SA-1.0": [
|
418
|
+
"Creative Commons Attribution Non Commercial Share Alike 1.0 Generic",
|
419
|
+
false,
|
420
|
+
false
|
421
|
+
],
|
422
|
+
"CC-BY-NC-SA-2.0": [
|
423
|
+
"Creative Commons Attribution Non Commercial Share Alike 2.0 Generic",
|
424
|
+
false,
|
425
|
+
false
|
426
|
+
],
|
427
|
+
"CC-BY-NC-SA-2.5": [
|
428
|
+
"Creative Commons Attribution Non Commercial Share Alike 2.5 Generic",
|
429
|
+
false,
|
430
|
+
false
|
431
|
+
],
|
432
|
+
"CC-BY-NC-SA-3.0": [
|
433
|
+
"Creative Commons Attribution Non Commercial Share Alike 3.0 Unported",
|
434
|
+
false,
|
435
|
+
false
|
436
|
+
],
|
437
|
+
"CC-BY-NC-SA-4.0": [
|
438
|
+
"Creative Commons Attribution Non Commercial Share Alike 4.0 International",
|
439
|
+
false,
|
440
|
+
false
|
441
|
+
],
|
442
|
+
"CC-BY-ND-1.0": [
|
443
|
+
"Creative Commons Attribution No Derivatives 1.0 Generic",
|
444
|
+
false,
|
445
|
+
false
|
446
|
+
],
|
447
|
+
"CC-BY-ND-2.0": [
|
448
|
+
"Creative Commons Attribution No Derivatives 2.0 Generic",
|
449
|
+
false,
|
450
|
+
false
|
451
|
+
],
|
452
|
+
"CC-BY-ND-2.5": [
|
453
|
+
"Creative Commons Attribution No Derivatives 2.5 Generic",
|
454
|
+
false,
|
455
|
+
false
|
456
|
+
],
|
457
|
+
"CC-BY-ND-3.0": [
|
458
|
+
"Creative Commons Attribution No Derivatives 3.0 Unported",
|
459
|
+
false,
|
460
|
+
false
|
461
|
+
],
|
462
|
+
"CC-BY-ND-4.0": [
|
463
|
+
"Creative Commons Attribution No Derivatives 4.0 International",
|
464
|
+
false,
|
465
|
+
false
|
466
|
+
],
|
467
|
+
"CC-BY-SA-1.0": [
|
468
|
+
"Creative Commons Attribution Share Alike 1.0 Generic",
|
469
|
+
false,
|
470
|
+
false
|
471
|
+
],
|
472
|
+
"CC-BY-SA-2.0": [
|
473
|
+
"Creative Commons Attribution Share Alike 2.0 Generic",
|
474
|
+
false,
|
475
|
+
false
|
476
|
+
],
|
477
|
+
"CC-BY-SA-2.5": [
|
478
|
+
"Creative Commons Attribution Share Alike 2.5 Generic",
|
479
|
+
false,
|
480
|
+
false
|
481
|
+
],
|
482
|
+
"CC-BY-SA-3.0": [
|
483
|
+
"Creative Commons Attribution Share Alike 3.0 Unported",
|
484
|
+
false,
|
485
|
+
false
|
486
|
+
],
|
487
|
+
"CC-BY-SA-4.0": [
|
488
|
+
"Creative Commons Attribution Share Alike 4.0 International",
|
489
|
+
false,
|
490
|
+
false
|
491
|
+
],
|
492
|
+
"CC-PDDC": [
|
493
|
+
"Creative Commons Public Domain Dedication and Certification",
|
494
|
+
false,
|
495
|
+
false
|
496
|
+
],
|
497
|
+
"CC0-1.0": [
|
498
|
+
"Creative Commons Zero v1.0 Universal",
|
499
|
+
false,
|
500
|
+
false
|
501
|
+
],
|
502
|
+
"CDDL-1.0": [
|
503
|
+
"Common Development and Distribution License 1.0",
|
504
|
+
true,
|
505
|
+
false
|
506
|
+
],
|
507
|
+
"CDDL-1.1": [
|
508
|
+
"Common Development and Distribution License 1.1",
|
509
|
+
false,
|
510
|
+
false
|
511
|
+
],
|
512
|
+
"CDLA-Permissive-1.0": [
|
513
|
+
"Community Data License Agreement Permissive 1.0",
|
514
|
+
false,
|
515
|
+
false
|
516
|
+
],
|
517
|
+
"CDLA-Sharing-1.0": [
|
518
|
+
"Community Data License Agreement Sharing 1.0",
|
519
|
+
false,
|
520
|
+
false
|
521
|
+
],
|
522
|
+
"CECILL-1.0": [
|
523
|
+
"CeCILL Free Software License Agreement v1.0",
|
524
|
+
false,
|
525
|
+
false
|
526
|
+
],
|
527
|
+
"CECILL-1.1": [
|
528
|
+
"CeCILL Free Software License Agreement v1.1",
|
529
|
+
false,
|
530
|
+
false
|
531
|
+
],
|
532
|
+
"CECILL-2.0": [
|
533
|
+
"CeCILL Free Software License Agreement v2.0",
|
534
|
+
false,
|
535
|
+
false
|
536
|
+
],
|
537
|
+
"CECILL-2.1": [
|
538
|
+
"CeCILL Free Software License Agreement v2.1",
|
539
|
+
true,
|
540
|
+
false
|
541
|
+
],
|
542
|
+
"CECILL-B": [
|
543
|
+
"CeCILL-B Free Software License Agreement",
|
544
|
+
false,
|
545
|
+
false
|
546
|
+
],
|
547
|
+
"CECILL-C": [
|
548
|
+
"CeCILL-C Free Software License Agreement",
|
549
|
+
false,
|
550
|
+
false
|
551
|
+
],
|
552
|
+
"CERN-OHL-1.1": [
|
553
|
+
"CERN Open Hardware Licence v1.1",
|
554
|
+
false,
|
555
|
+
false
|
556
|
+
],
|
557
|
+
"CERN-OHL-1.2": [
|
558
|
+
"CERN Open Hardware Licence v1.2",
|
559
|
+
false,
|
560
|
+
false
|
561
|
+
],
|
562
|
+
"CERN-OHL-P-2.0": [
|
563
|
+
"CERN Open Hardware Licence Version 2 - Permissive",
|
564
|
+
false,
|
565
|
+
false
|
566
|
+
],
|
567
|
+
"CERN-OHL-S-2.0": [
|
568
|
+
"CERN Open Hardware Licence Version 2 - Strongly Reciprocal",
|
569
|
+
false,
|
570
|
+
false
|
571
|
+
],
|
572
|
+
"CERN-OHL-W-2.0": [
|
573
|
+
"CERN Open Hardware Licence Version 2 - Weakly Reciprocal",
|
574
|
+
false,
|
575
|
+
false
|
576
|
+
],
|
577
|
+
"ClArtistic": [
|
578
|
+
"Clarified Artistic License",
|
579
|
+
false,
|
580
|
+
false
|
581
|
+
],
|
582
|
+
"CNRI-Jython": [
|
583
|
+
"CNRI Jython License",
|
584
|
+
false,
|
585
|
+
false
|
586
|
+
],
|
587
|
+
"CNRI-Python": [
|
588
|
+
"CNRI Python License",
|
589
|
+
true,
|
590
|
+
false
|
591
|
+
],
|
592
|
+
"CNRI-Python-GPL-Compatible": [
|
593
|
+
"CNRI Python Open Source GPL Compatible License Agreement",
|
594
|
+
false,
|
595
|
+
false
|
596
|
+
],
|
597
|
+
"Condor-1.1": [
|
598
|
+
"Condor Public License v1.1",
|
599
|
+
false,
|
600
|
+
false
|
601
|
+
],
|
602
|
+
"copyleft-next-0.3.0": [
|
603
|
+
"copyleft-next 0.3.0",
|
604
|
+
false,
|
605
|
+
false
|
606
|
+
],
|
607
|
+
"copyleft-next-0.3.1": [
|
608
|
+
"copyleft-next 0.3.1",
|
609
|
+
false,
|
610
|
+
false
|
611
|
+
],
|
612
|
+
"CPAL-1.0": [
|
613
|
+
"Common Public Attribution License 1.0",
|
614
|
+
true,
|
615
|
+
false
|
616
|
+
],
|
617
|
+
"CPL-1.0": [
|
618
|
+
"Common Public License 1.0",
|
619
|
+
true,
|
620
|
+
false
|
621
|
+
],
|
622
|
+
"CPOL-1.02": [
|
623
|
+
"Code Project Open License 1.02",
|
624
|
+
false,
|
625
|
+
false
|
626
|
+
],
|
627
|
+
"Crossword": [
|
628
|
+
"Crossword License",
|
629
|
+
false,
|
630
|
+
false
|
631
|
+
],
|
632
|
+
"CrystalStacker": [
|
633
|
+
"CrystalStacker License",
|
634
|
+
false,
|
635
|
+
false
|
636
|
+
],
|
637
|
+
"CUA-OPL-1.0": [
|
638
|
+
"CUA Office Public License v1.0",
|
639
|
+
true,
|
640
|
+
false
|
641
|
+
],
|
642
|
+
"Cube": [
|
643
|
+
"Cube License",
|
644
|
+
false,
|
645
|
+
false
|
646
|
+
],
|
647
|
+
"curl": [
|
648
|
+
"curl License",
|
649
|
+
false,
|
650
|
+
false
|
651
|
+
],
|
652
|
+
"D-FSL-1.0": [
|
653
|
+
"Deutsche Freie Software Lizenz",
|
654
|
+
false,
|
655
|
+
false
|
656
|
+
],
|
657
|
+
"diffmark": [
|
658
|
+
"diffmark license",
|
659
|
+
false,
|
660
|
+
false
|
661
|
+
],
|
662
|
+
"DOC": [
|
663
|
+
"DOC License",
|
664
|
+
false,
|
665
|
+
false
|
666
|
+
],
|
667
|
+
"Dotseqn": [
|
668
|
+
"Dotseqn License",
|
669
|
+
false,
|
670
|
+
false
|
671
|
+
],
|
672
|
+
"DSDP": [
|
673
|
+
"DSDP License",
|
674
|
+
false,
|
675
|
+
false
|
676
|
+
],
|
677
|
+
"dvipdfm": [
|
678
|
+
"dvipdfm License",
|
679
|
+
false,
|
680
|
+
false
|
681
|
+
],
|
682
|
+
"ECL-1.0": [
|
683
|
+
"Educational Community License v1.0",
|
684
|
+
true,
|
685
|
+
false
|
686
|
+
],
|
687
|
+
"ECL-2.0": [
|
688
|
+
"Educational Community License v2.0",
|
689
|
+
true,
|
690
|
+
false
|
691
|
+
],
|
692
|
+
"eCos-2.0": [
|
693
|
+
"eCos license version 2.0",
|
694
|
+
false,
|
695
|
+
true
|
696
|
+
],
|
697
|
+
"EFL-1.0": [
|
698
|
+
"Eiffel Forum License v1.0",
|
699
|
+
true,
|
700
|
+
false
|
701
|
+
],
|
702
|
+
"EFL-2.0": [
|
703
|
+
"Eiffel Forum License v2.0",
|
704
|
+
true,
|
705
|
+
false
|
706
|
+
],
|
707
|
+
"eGenix": [
|
708
|
+
"eGenix.com Public License 1.1.0",
|
709
|
+
false,
|
710
|
+
false
|
711
|
+
],
|
712
|
+
"Entessa": [
|
713
|
+
"Entessa Public License v1.0",
|
714
|
+
true,
|
715
|
+
false
|
716
|
+
],
|
717
|
+
"EPL-1.0": [
|
718
|
+
"Eclipse Public License 1.0",
|
719
|
+
true,
|
720
|
+
false
|
721
|
+
],
|
722
|
+
"EPL-2.0": [
|
723
|
+
"Eclipse Public License 2.0",
|
724
|
+
true,
|
725
|
+
false
|
726
|
+
],
|
727
|
+
"ErlPL-1.1": [
|
728
|
+
"Erlang Public License v1.1",
|
729
|
+
false,
|
730
|
+
false
|
731
|
+
],
|
732
|
+
"etalab-2.0": [
|
733
|
+
"Etalab Open License 2.0",
|
734
|
+
false,
|
735
|
+
false
|
736
|
+
],
|
737
|
+
"EUDatagrid": [
|
738
|
+
"EU DataGrid Software License",
|
739
|
+
true,
|
740
|
+
false
|
741
|
+
],
|
742
|
+
"EUPL-1.0": [
|
743
|
+
"European Union Public License 1.0",
|
744
|
+
false,
|
745
|
+
false
|
746
|
+
],
|
747
|
+
"EUPL-1.1": [
|
748
|
+
"European Union Public License 1.1",
|
749
|
+
true,
|
750
|
+
false
|
751
|
+
],
|
752
|
+
"EUPL-1.2": [
|
753
|
+
"European Union Public License 1.2",
|
754
|
+
true,
|
755
|
+
false
|
756
|
+
],
|
757
|
+
"Eurosym": [
|
758
|
+
"Eurosym License",
|
759
|
+
false,
|
760
|
+
false
|
761
|
+
],
|
762
|
+
"Fair": [
|
763
|
+
"Fair License",
|
764
|
+
true,
|
765
|
+
false
|
766
|
+
],
|
767
|
+
"Frameworx-1.0": [
|
768
|
+
"Frameworx Open License 1.0",
|
769
|
+
true,
|
770
|
+
false
|
771
|
+
],
|
772
|
+
"FreeImage": [
|
773
|
+
"FreeImage Public License v1.0",
|
774
|
+
false,
|
775
|
+
false
|
776
|
+
],
|
777
|
+
"FSFAP": [
|
778
|
+
"FSF All Permissive License",
|
779
|
+
false,
|
780
|
+
false
|
781
|
+
],
|
782
|
+
"FSFUL": [
|
783
|
+
"FSF Unlimited License",
|
784
|
+
false,
|
785
|
+
false
|
786
|
+
],
|
787
|
+
"FSFULLR": [
|
788
|
+
"FSF Unlimited License (with License Retention)",
|
789
|
+
false,
|
790
|
+
false
|
791
|
+
],
|
792
|
+
"FTL": [
|
793
|
+
"Freetype Project License",
|
794
|
+
false,
|
795
|
+
false
|
796
|
+
],
|
797
|
+
"GFDL-1.1": [
|
798
|
+
"GNU Free Documentation License v1.1",
|
799
|
+
false,
|
800
|
+
true
|
801
|
+
],
|
802
|
+
"GFDL-1.1-only": [
|
803
|
+
"GNU Free Documentation License v1.1 only",
|
804
|
+
false,
|
805
|
+
false
|
806
|
+
],
|
807
|
+
"GFDL-1.1-or-later": [
|
808
|
+
"GNU Free Documentation License v1.1 or later",
|
809
|
+
false,
|
810
|
+
false
|
811
|
+
],
|
812
|
+
"GFDL-1.2": [
|
813
|
+
"GNU Free Documentation License v1.2",
|
814
|
+
false,
|
815
|
+
true
|
816
|
+
],
|
817
|
+
"GFDL-1.2-only": [
|
818
|
+
"GNU Free Documentation License v1.2 only",
|
819
|
+
false,
|
820
|
+
false
|
821
|
+
],
|
822
|
+
"GFDL-1.2-or-later": [
|
823
|
+
"GNU Free Documentation License v1.2 or later",
|
824
|
+
false,
|
825
|
+
false
|
826
|
+
],
|
827
|
+
"GFDL-1.3": [
|
828
|
+
"GNU Free Documentation License v1.3",
|
829
|
+
false,
|
830
|
+
true
|
831
|
+
],
|
832
|
+
"GFDL-1.3-only": [
|
833
|
+
"GNU Free Documentation License v1.3 only",
|
834
|
+
false,
|
835
|
+
false
|
836
|
+
],
|
837
|
+
"GFDL-1.3-or-later": [
|
838
|
+
"GNU Free Documentation License v1.3 or later",
|
839
|
+
false,
|
840
|
+
false
|
841
|
+
],
|
842
|
+
"Giftware": [
|
843
|
+
"Giftware License",
|
844
|
+
false,
|
845
|
+
false
|
846
|
+
],
|
847
|
+
"GL2PS": [
|
848
|
+
"GL2PS License",
|
849
|
+
false,
|
850
|
+
false
|
851
|
+
],
|
852
|
+
"Glide": [
|
853
|
+
"3dfx Glide License",
|
854
|
+
false,
|
855
|
+
false
|
856
|
+
],
|
857
|
+
"Glulxe": [
|
858
|
+
"Glulxe License",
|
859
|
+
false,
|
860
|
+
false
|
861
|
+
],
|
862
|
+
"gnuplot": [
|
863
|
+
"gnuplot License",
|
864
|
+
false,
|
865
|
+
false
|
866
|
+
],
|
867
|
+
"GPL-1.0": [
|
868
|
+
"GNU General Public License v1.0 only",
|
869
|
+
false,
|
870
|
+
true
|
871
|
+
],
|
872
|
+
"GPL-1.0+": [
|
873
|
+
"GNU General Public License v1.0 or later",
|
874
|
+
false,
|
875
|
+
true
|
876
|
+
],
|
877
|
+
"GPL-1.0-only": [
|
878
|
+
"GNU General Public License v1.0 only",
|
879
|
+
false,
|
880
|
+
false
|
881
|
+
],
|
882
|
+
"GPL-1.0-or-later": [
|
883
|
+
"GNU General Public License v1.0 or later",
|
884
|
+
false,
|
885
|
+
false
|
886
|
+
],
|
887
|
+
"GPL-2.0": [
|
888
|
+
"GNU General Public License v2.0 only",
|
889
|
+
true,
|
890
|
+
true
|
891
|
+
],
|
892
|
+
"GPL-2.0+": [
|
893
|
+
"GNU General Public License v2.0 or later",
|
894
|
+
true,
|
895
|
+
true
|
896
|
+
],
|
897
|
+
"GPL-2.0-only": [
|
898
|
+
"GNU General Public License v2.0 only",
|
899
|
+
true,
|
900
|
+
false
|
901
|
+
],
|
902
|
+
"GPL-2.0-or-later": [
|
903
|
+
"GNU General Public License v2.0 or later",
|
904
|
+
true,
|
905
|
+
false
|
906
|
+
],
|
907
|
+
"GPL-2.0-with-autoconf-exception": [
|
908
|
+
"GNU General Public License v2.0 w/Autoconf exception",
|
909
|
+
false,
|
910
|
+
true
|
911
|
+
],
|
912
|
+
"GPL-2.0-with-bison-exception": [
|
913
|
+
"GNU General Public License v2.0 w/Bison exception",
|
914
|
+
false,
|
915
|
+
true
|
916
|
+
],
|
917
|
+
"GPL-2.0-with-classpath-exception": [
|
918
|
+
"GNU General Public License v2.0 w/Classpath exception",
|
919
|
+
false,
|
920
|
+
true
|
921
|
+
],
|
922
|
+
"GPL-2.0-with-font-exception": [
|
923
|
+
"GNU General Public License v2.0 w/Font exception",
|
924
|
+
false,
|
925
|
+
true
|
926
|
+
],
|
927
|
+
"GPL-2.0-with-GCC-exception": [
|
928
|
+
"GNU General Public License v2.0 w/GCC Runtime Library exception",
|
929
|
+
false,
|
930
|
+
true
|
931
|
+
],
|
932
|
+
"GPL-3.0": [
|
933
|
+
"GNU General Public License v3.0 only",
|
934
|
+
true,
|
935
|
+
true
|
936
|
+
],
|
937
|
+
"GPL-3.0+": [
|
938
|
+
"GNU General Public License v3.0 or later",
|
939
|
+
true,
|
940
|
+
true
|
941
|
+
],
|
942
|
+
"GPL-3.0-only": [
|
943
|
+
"GNU General Public License v3.0 only",
|
944
|
+
true,
|
945
|
+
false
|
946
|
+
],
|
947
|
+
"GPL-3.0-or-later": [
|
948
|
+
"GNU General Public License v3.0 or later",
|
949
|
+
true,
|
950
|
+
false
|
951
|
+
],
|
952
|
+
"GPL-3.0-with-autoconf-exception": [
|
953
|
+
"GNU General Public License v3.0 w/Autoconf exception",
|
954
|
+
false,
|
955
|
+
true
|
956
|
+
],
|
957
|
+
"GPL-3.0-with-GCC-exception": [
|
958
|
+
"GNU General Public License v3.0 w/GCC Runtime Library exception",
|
959
|
+
true,
|
960
|
+
true
|
961
|
+
],
|
962
|
+
"gSOAP-1.3b": [
|
963
|
+
"gSOAP Public License v1.3b",
|
964
|
+
false,
|
965
|
+
false
|
966
|
+
],
|
967
|
+
"HaskellReport": [
|
968
|
+
"Haskell Language Report License",
|
969
|
+
false,
|
970
|
+
false
|
971
|
+
],
|
972
|
+
"Hippocratic-2.1": [
|
973
|
+
"Hippocratic License 2.1",
|
974
|
+
false,
|
975
|
+
false
|
976
|
+
],
|
977
|
+
"HPND": [
|
978
|
+
"Historical Permission Notice and Disclaimer",
|
979
|
+
true,
|
980
|
+
false
|
981
|
+
],
|
982
|
+
"HPND-sell-variant": [
|
983
|
+
"Historical Permission Notice and Disclaimer - sell variant",
|
984
|
+
false,
|
985
|
+
false
|
986
|
+
],
|
987
|
+
"IBM-pibs": [
|
988
|
+
"IBM PowerPC Initialization and Boot Software",
|
989
|
+
false,
|
990
|
+
false
|
991
|
+
],
|
992
|
+
"ICU": [
|
993
|
+
"ICU License",
|
994
|
+
false,
|
995
|
+
false
|
996
|
+
],
|
997
|
+
"IJG": [
|
998
|
+
"Independent JPEG Group License",
|
999
|
+
false,
|
1000
|
+
false
|
1001
|
+
],
|
1002
|
+
"ImageMagick": [
|
1003
|
+
"ImageMagick License",
|
1004
|
+
false,
|
1005
|
+
false
|
1006
|
+
],
|
1007
|
+
"iMatix": [
|
1008
|
+
"iMatix Standard Function Library Agreement",
|
1009
|
+
false,
|
1010
|
+
false
|
1011
|
+
],
|
1012
|
+
"Imlib2": [
|
1013
|
+
"Imlib2 License",
|
1014
|
+
false,
|
1015
|
+
false
|
1016
|
+
],
|
1017
|
+
"Info-ZIP": [
|
1018
|
+
"Info-ZIP License",
|
1019
|
+
false,
|
1020
|
+
false
|
1021
|
+
],
|
1022
|
+
"Intel": [
|
1023
|
+
"Intel Open Source License",
|
1024
|
+
true,
|
1025
|
+
false
|
1026
|
+
],
|
1027
|
+
"Intel-ACPI": [
|
1028
|
+
"Intel ACPI Software License Agreement",
|
1029
|
+
false,
|
1030
|
+
false
|
1031
|
+
],
|
1032
|
+
"Interbase-1.0": [
|
1033
|
+
"Interbase Public License v1.0",
|
1034
|
+
false,
|
1035
|
+
false
|
1036
|
+
],
|
1037
|
+
"IPA": [
|
1038
|
+
"IPA Font License",
|
1039
|
+
true,
|
1040
|
+
false
|
1041
|
+
],
|
1042
|
+
"IPL-1.0": [
|
1043
|
+
"IBM Public License v1.0",
|
1044
|
+
true,
|
1045
|
+
false
|
1046
|
+
],
|
1047
|
+
"ISC": [
|
1048
|
+
"ISC License",
|
1049
|
+
true,
|
1050
|
+
false
|
1051
|
+
],
|
1052
|
+
"JasPer-2.0": [
|
1053
|
+
"JasPer License",
|
1054
|
+
false,
|
1055
|
+
false
|
1056
|
+
],
|
1057
|
+
"JPNIC": [
|
1058
|
+
"Japan Network Information Center License",
|
1059
|
+
false,
|
1060
|
+
false
|
1061
|
+
],
|
1062
|
+
"JSON": [
|
1063
|
+
"JSON License",
|
1064
|
+
false,
|
1065
|
+
false
|
1066
|
+
],
|
1067
|
+
"LAL-1.2": [
|
1068
|
+
"Licence Art Libre 1.2",
|
1069
|
+
false,
|
1070
|
+
false
|
1071
|
+
],
|
1072
|
+
"LAL-1.3": [
|
1073
|
+
"Licence Art Libre 1.3",
|
1074
|
+
false,
|
1075
|
+
false
|
1076
|
+
],
|
1077
|
+
"Latex2e": [
|
1078
|
+
"Latex2e License",
|
1079
|
+
false,
|
1080
|
+
false
|
1081
|
+
],
|
1082
|
+
"Leptonica": [
|
1083
|
+
"Leptonica License",
|
1084
|
+
false,
|
1085
|
+
false
|
1086
|
+
],
|
1087
|
+
"LGPL-2.0": [
|
1088
|
+
"GNU Library General Public License v2 only",
|
1089
|
+
true,
|
1090
|
+
true
|
1091
|
+
],
|
1092
|
+
"LGPL-2.0+": [
|
1093
|
+
"GNU Library General Public License v2 or later",
|
1094
|
+
true,
|
1095
|
+
true
|
1096
|
+
],
|
1097
|
+
"LGPL-2.0-only": [
|
1098
|
+
"GNU Library General Public License v2 only",
|
1099
|
+
true,
|
1100
|
+
false
|
1101
|
+
],
|
1102
|
+
"LGPL-2.0-or-later": [
|
1103
|
+
"GNU Library General Public License v2 or later",
|
1104
|
+
true,
|
1105
|
+
false
|
1106
|
+
],
|
1107
|
+
"LGPL-2.1": [
|
1108
|
+
"GNU Lesser General Public License v2.1 only",
|
1109
|
+
true,
|
1110
|
+
true
|
1111
|
+
],
|
1112
|
+
"LGPL-2.1+": [
|
1113
|
+
"GNU Library General Public License v2.1 or later",
|
1114
|
+
true,
|
1115
|
+
true
|
1116
|
+
],
|
1117
|
+
"LGPL-2.1-only": [
|
1118
|
+
"GNU Lesser General Public License v2.1 only",
|
1119
|
+
true,
|
1120
|
+
false
|
1121
|
+
],
|
1122
|
+
"LGPL-2.1-or-later": [
|
1123
|
+
"GNU Lesser General Public License v2.1 or later",
|
1124
|
+
true,
|
1125
|
+
false
|
1126
|
+
],
|
1127
|
+
"LGPL-3.0": [
|
1128
|
+
"GNU Lesser General Public License v3.0 only",
|
1129
|
+
true,
|
1130
|
+
true
|
1131
|
+
],
|
1132
|
+
"LGPL-3.0+": [
|
1133
|
+
"GNU Lesser General Public License v3.0 or later",
|
1134
|
+
true,
|
1135
|
+
true
|
1136
|
+
],
|
1137
|
+
"LGPL-3.0-only": [
|
1138
|
+
"GNU Lesser General Public License v3.0 only",
|
1139
|
+
true,
|
1140
|
+
false
|
1141
|
+
],
|
1142
|
+
"LGPL-3.0-or-later": [
|
1143
|
+
"GNU Lesser General Public License v3.0 or later",
|
1144
|
+
true,
|
1145
|
+
false
|
1146
|
+
],
|
1147
|
+
"LGPLLR": [
|
1148
|
+
"Lesser General Public License For Linguistic Resources",
|
1149
|
+
false,
|
1150
|
+
false
|
1151
|
+
],
|
1152
|
+
"Libpng": [
|
1153
|
+
"libpng License",
|
1154
|
+
false,
|
1155
|
+
false
|
1156
|
+
],
|
1157
|
+
"libpng-2.0": [
|
1158
|
+
"PNG Reference Library version 2",
|
1159
|
+
false,
|
1160
|
+
false
|
1161
|
+
],
|
1162
|
+
"libselinux-1.0": [
|
1163
|
+
"libselinux public domain notice",
|
1164
|
+
false,
|
1165
|
+
false
|
1166
|
+
],
|
1167
|
+
"libtiff": [
|
1168
|
+
"libtiff License",
|
1169
|
+
false,
|
1170
|
+
false
|
1171
|
+
],
|
1172
|
+
"LiLiQ-P-1.1": [
|
1173
|
+
"Licence Libre du Qu\u00e9bec \u2013 Permissive version 1.1",
|
1174
|
+
true,
|
1175
|
+
false
|
1176
|
+
],
|
1177
|
+
"LiLiQ-R-1.1": [
|
1178
|
+
"Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 version 1.1",
|
1179
|
+
true,
|
1180
|
+
false
|
1181
|
+
],
|
1182
|
+
"LiLiQ-Rplus-1.1": [
|
1183
|
+
"Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte version 1.1",
|
1184
|
+
true,
|
1185
|
+
false
|
1186
|
+
],
|
1187
|
+
"Linux-OpenIB": [
|
1188
|
+
"Linux Kernel Variant of OpenIB.org license",
|
1189
|
+
false,
|
1190
|
+
false
|
1191
|
+
],
|
1192
|
+
"LPL-1.0": [
|
1193
|
+
"Lucent Public License Version 1.0",
|
1194
|
+
true,
|
1195
|
+
false
|
1196
|
+
],
|
1197
|
+
"LPL-1.02": [
|
1198
|
+
"Lucent Public License v1.02",
|
1199
|
+
true,
|
1200
|
+
false
|
1201
|
+
],
|
1202
|
+
"LPPL-1.0": [
|
1203
|
+
"LaTeX Project Public License v1.0",
|
1204
|
+
false,
|
1205
|
+
false
|
1206
|
+
],
|
1207
|
+
"LPPL-1.1": [
|
1208
|
+
"LaTeX Project Public License v1.1",
|
1209
|
+
false,
|
1210
|
+
false
|
1211
|
+
],
|
1212
|
+
"LPPL-1.2": [
|
1213
|
+
"LaTeX Project Public License v1.2",
|
1214
|
+
false,
|
1215
|
+
false
|
1216
|
+
],
|
1217
|
+
"LPPL-1.3a": [
|
1218
|
+
"LaTeX Project Public License v1.3a",
|
1219
|
+
false,
|
1220
|
+
false
|
1221
|
+
],
|
1222
|
+
"LPPL-1.3c": [
|
1223
|
+
"LaTeX Project Public License v1.3c",
|
1224
|
+
true,
|
1225
|
+
false
|
1226
|
+
],
|
1227
|
+
"MakeIndex": [
|
1228
|
+
"MakeIndex License",
|
1229
|
+
false,
|
1230
|
+
false
|
1231
|
+
],
|
1232
|
+
"MirOS": [
|
1233
|
+
"The MirOS Licence",
|
1234
|
+
true,
|
1235
|
+
false
|
1236
|
+
],
|
1237
|
+
"MIT": [
|
1238
|
+
"MIT License",
|
1239
|
+
true,
|
1240
|
+
false
|
1241
|
+
],
|
1242
|
+
"MIT-0": [
|
1243
|
+
"MIT No Attribution",
|
1244
|
+
false,
|
1245
|
+
false
|
1246
|
+
],
|
1247
|
+
"MIT-advertising": [
|
1248
|
+
"Enlightenment License (e16)",
|
1249
|
+
false,
|
1250
|
+
false
|
1251
|
+
],
|
1252
|
+
"MIT-CMU": [
|
1253
|
+
"CMU License",
|
1254
|
+
false,
|
1255
|
+
false
|
1256
|
+
],
|
1257
|
+
"MIT-enna": [
|
1258
|
+
"enna License",
|
1259
|
+
false,
|
1260
|
+
false
|
1261
|
+
],
|
1262
|
+
"MIT-feh": [
|
1263
|
+
"feh License",
|
1264
|
+
false,
|
1265
|
+
false
|
1266
|
+
],
|
1267
|
+
"MITNFA": [
|
1268
|
+
"MIT +no-false-attribs license",
|
1269
|
+
false,
|
1270
|
+
false
|
1271
|
+
],
|
1272
|
+
"Motosoto": [
|
1273
|
+
"Motosoto License",
|
1274
|
+
true,
|
1275
|
+
false
|
1276
|
+
],
|
1277
|
+
"mpich2": [
|
1278
|
+
"mpich2 License",
|
1279
|
+
false,
|
1280
|
+
false
|
1281
|
+
],
|
1282
|
+
"MPL-1.0": [
|
1283
|
+
"Mozilla Public License 1.0",
|
1284
|
+
true,
|
1285
|
+
false
|
1286
|
+
],
|
1287
|
+
"MPL-1.1": [
|
1288
|
+
"Mozilla Public License 1.1",
|
1289
|
+
true,
|
1290
|
+
false
|
1291
|
+
],
|
1292
|
+
"MPL-2.0": [
|
1293
|
+
"Mozilla Public License 2.0",
|
1294
|
+
true,
|
1295
|
+
false
|
1296
|
+
],
|
1297
|
+
"MPL-2.0-no-copyleft-exception": [
|
1298
|
+
"Mozilla Public License 2.0 (no copyleft exception)",
|
1299
|
+
true,
|
1300
|
+
false
|
1301
|
+
],
|
1302
|
+
"MS-PL": [
|
1303
|
+
"Microsoft Public License",
|
1304
|
+
true,
|
1305
|
+
false
|
1306
|
+
],
|
1307
|
+
"MS-RL": [
|
1308
|
+
"Microsoft Reciprocal License",
|
1309
|
+
true,
|
1310
|
+
false
|
1311
|
+
],
|
1312
|
+
"MTLL": [
|
1313
|
+
"Matrix Template Library License",
|
1314
|
+
false,
|
1315
|
+
false
|
1316
|
+
],
|
1317
|
+
"MulanPSL-1.0": [
|
1318
|
+
"Mulan Permissive Software License, Version 1",
|
1319
|
+
false,
|
1320
|
+
false
|
1321
|
+
],
|
1322
|
+
"MulanPSL-2.0": [
|
1323
|
+
"Mulan Permissive Software License, Version 2",
|
1324
|
+
true,
|
1325
|
+
false
|
1326
|
+
],
|
1327
|
+
"Multics": [
|
1328
|
+
"Multics License",
|
1329
|
+
true,
|
1330
|
+
false
|
1331
|
+
],
|
1332
|
+
"Mup": [
|
1333
|
+
"Mup License",
|
1334
|
+
false,
|
1335
|
+
false
|
1336
|
+
],
|
1337
|
+
"NASA-1.3": [
|
1338
|
+
"NASA Open Source Agreement 1.3",
|
1339
|
+
true,
|
1340
|
+
false
|
1341
|
+
],
|
1342
|
+
"Naumen": [
|
1343
|
+
"Naumen Public License",
|
1344
|
+
true,
|
1345
|
+
false
|
1346
|
+
],
|
1347
|
+
"NBPL-1.0": [
|
1348
|
+
"Net Boolean Public License v1",
|
1349
|
+
false,
|
1350
|
+
false
|
1351
|
+
],
|
1352
|
+
"NCGL-UK-2.0": [
|
1353
|
+
"Non-Commercial Government Licence",
|
1354
|
+
false,
|
1355
|
+
false
|
1356
|
+
],
|
1357
|
+
"NCSA": [
|
1358
|
+
"University of Illinois/NCSA Open Source License",
|
1359
|
+
true,
|
1360
|
+
false
|
1361
|
+
],
|
1362
|
+
"Net-SNMP": [
|
1363
|
+
"Net-SNMP License",
|
1364
|
+
false,
|
1365
|
+
false
|
1366
|
+
],
|
1367
|
+
"NetCDF": [
|
1368
|
+
"NetCDF license",
|
1369
|
+
false,
|
1370
|
+
false
|
1371
|
+
],
|
1372
|
+
"Newsletr": [
|
1373
|
+
"Newsletr License",
|
1374
|
+
false,
|
1375
|
+
false
|
1376
|
+
],
|
1377
|
+
"NGPL": [
|
1378
|
+
"Nethack General Public License",
|
1379
|
+
true,
|
1380
|
+
false
|
1381
|
+
],
|
1382
|
+
"NLOD-1.0": [
|
1383
|
+
"Norwegian Licence for Open Government Data",
|
1384
|
+
false,
|
1385
|
+
false
|
1386
|
+
],
|
1387
|
+
"NLPL": [
|
1388
|
+
"No Limit Public License",
|
1389
|
+
false,
|
1390
|
+
false
|
1391
|
+
],
|
1392
|
+
"Nokia": [
|
1393
|
+
"Nokia Open Source License",
|
1394
|
+
true,
|
1395
|
+
false
|
1396
|
+
],
|
1397
|
+
"NOSL": [
|
1398
|
+
"Netizen Open Source License",
|
1399
|
+
false,
|
1400
|
+
false
|
1401
|
+
],
|
1402
|
+
"Noweb": [
|
1403
|
+
"Noweb License",
|
1404
|
+
false,
|
1405
|
+
false
|
1406
|
+
],
|
1407
|
+
"NPL-1.0": [
|
1408
|
+
"Netscape Public License v1.0",
|
1409
|
+
false,
|
1410
|
+
false
|
1411
|
+
],
|
1412
|
+
"NPL-1.1": [
|
1413
|
+
"Netscape Public License v1.1",
|
1414
|
+
false,
|
1415
|
+
false
|
1416
|
+
],
|
1417
|
+
"NPOSL-3.0": [
|
1418
|
+
"Non-Profit Open Software License 3.0",
|
1419
|
+
true,
|
1420
|
+
false
|
1421
|
+
],
|
1422
|
+
"NRL": [
|
1423
|
+
"NRL License",
|
1424
|
+
false,
|
1425
|
+
false
|
1426
|
+
],
|
1427
|
+
"NTP": [
|
1428
|
+
"NTP License",
|
1429
|
+
true,
|
1430
|
+
false
|
1431
|
+
],
|
1432
|
+
"NTP-0": [
|
1433
|
+
"NTP No Attribution",
|
1434
|
+
false,
|
1435
|
+
false
|
1436
|
+
],
|
1437
|
+
"Nunit": [
|
1438
|
+
"Nunit License",
|
1439
|
+
false,
|
1440
|
+
true
|
1441
|
+
],
|
1442
|
+
"O-UDA-1.0": [
|
1443
|
+
"Open Use of Data Agreement v1.0",
|
1444
|
+
false,
|
1445
|
+
false
|
1446
|
+
],
|
1447
|
+
"OCCT-PL": [
|
1448
|
+
"Open CASCADE Technology Public License",
|
1449
|
+
false,
|
1450
|
+
false
|
1451
|
+
],
|
1452
|
+
"OCLC-2.0": [
|
1453
|
+
"OCLC Research Public License 2.0",
|
1454
|
+
true,
|
1455
|
+
false
|
1456
|
+
],
|
1457
|
+
"ODbL-1.0": [
|
1458
|
+
"ODC Open Database License v1.0",
|
1459
|
+
false,
|
1460
|
+
false
|
1461
|
+
],
|
1462
|
+
"ODC-By-1.0": [
|
1463
|
+
"Open Data Commons Attribution License v1.0",
|
1464
|
+
false,
|
1465
|
+
false
|
1466
|
+
],
|
1467
|
+
"OFL-1.0": [
|
1468
|
+
"SIL Open Font License 1.0",
|
1469
|
+
false,
|
1470
|
+
false
|
1471
|
+
],
|
1472
|
+
"OFL-1.0-no-RFN": [
|
1473
|
+
"SIL Open Font License 1.0 with no Reserved Font Name",
|
1474
|
+
false,
|
1475
|
+
false
|
1476
|
+
],
|
1477
|
+
"OFL-1.0-RFN": [
|
1478
|
+
"SIL Open Font License 1.0 with Reserved Font Name",
|
1479
|
+
false,
|
1480
|
+
false
|
1481
|
+
],
|
1482
|
+
"OFL-1.1": [
|
1483
|
+
"SIL Open Font License 1.1",
|
1484
|
+
true,
|
1485
|
+
false
|
1486
|
+
],
|
1487
|
+
"OFL-1.1-no-RFN": [
|
1488
|
+
"SIL Open Font License 1.1 with no Reserved Font Name",
|
1489
|
+
true,
|
1490
|
+
false
|
1491
|
+
],
|
1492
|
+
"OFL-1.1-RFN": [
|
1493
|
+
"SIL Open Font License 1.1 with Reserved Font Name",
|
1494
|
+
true,
|
1495
|
+
false
|
1496
|
+
],
|
1497
|
+
"OGC-1.0": [
|
1498
|
+
"OGC Software License, Version 1.0",
|
1499
|
+
false,
|
1500
|
+
false
|
1501
|
+
],
|
1502
|
+
"OGL-Canada-2.0": [
|
1503
|
+
"Open Government Licence - Canada",
|
1504
|
+
false,
|
1505
|
+
false
|
1506
|
+
],
|
1507
|
+
"OGL-UK-1.0": [
|
1508
|
+
"Open Government Licence v1.0",
|
1509
|
+
false,
|
1510
|
+
false
|
1511
|
+
],
|
1512
|
+
"OGL-UK-2.0": [
|
1513
|
+
"Open Government Licence v2.0",
|
1514
|
+
false,
|
1515
|
+
false
|
1516
|
+
],
|
1517
|
+
"OGL-UK-3.0": [
|
1518
|
+
"Open Government Licence v3.0",
|
1519
|
+
false,
|
1520
|
+
false
|
1521
|
+
],
|
1522
|
+
"OGTSL": [
|
1523
|
+
"Open Group Test Suite License",
|
1524
|
+
true,
|
1525
|
+
false
|
1526
|
+
],
|
1527
|
+
"OLDAP-1.1": [
|
1528
|
+
"Open LDAP Public License v1.1",
|
1529
|
+
false,
|
1530
|
+
false
|
1531
|
+
],
|
1532
|
+
"OLDAP-1.2": [
|
1533
|
+
"Open LDAP Public License v1.2",
|
1534
|
+
false,
|
1535
|
+
false
|
1536
|
+
],
|
1537
|
+
"OLDAP-1.3": [
|
1538
|
+
"Open LDAP Public License v1.3",
|
1539
|
+
false,
|
1540
|
+
false
|
1541
|
+
],
|
1542
|
+
"OLDAP-1.4": [
|
1543
|
+
"Open LDAP Public License v1.4",
|
1544
|
+
false,
|
1545
|
+
false
|
1546
|
+
],
|
1547
|
+
"OLDAP-2.0": [
|
1548
|
+
"Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)",
|
1549
|
+
false,
|
1550
|
+
false
|
1551
|
+
],
|
1552
|
+
"OLDAP-2.0.1": [
|
1553
|
+
"Open LDAP Public License v2.0.1",
|
1554
|
+
false,
|
1555
|
+
false
|
1556
|
+
],
|
1557
|
+
"OLDAP-2.1": [
|
1558
|
+
"Open LDAP Public License v2.1",
|
1559
|
+
false,
|
1560
|
+
false
|
1561
|
+
],
|
1562
|
+
"OLDAP-2.2": [
|
1563
|
+
"Open LDAP Public License v2.2",
|
1564
|
+
false,
|
1565
|
+
false
|
1566
|
+
],
|
1567
|
+
"OLDAP-2.2.1": [
|
1568
|
+
"Open LDAP Public License v2.2.1",
|
1569
|
+
false,
|
1570
|
+
false
|
1571
|
+
],
|
1572
|
+
"OLDAP-2.2.2": [
|
1573
|
+
"Open LDAP Public License 2.2.2",
|
1574
|
+
false,
|
1575
|
+
false
|
1576
|
+
],
|
1577
|
+
"OLDAP-2.3": [
|
1578
|
+
"Open LDAP Public License v2.3",
|
1579
|
+
false,
|
1580
|
+
false
|
1581
|
+
],
|
1582
|
+
"OLDAP-2.4": [
|
1583
|
+
"Open LDAP Public License v2.4",
|
1584
|
+
false,
|
1585
|
+
false
|
1586
|
+
],
|
1587
|
+
"OLDAP-2.5": [
|
1588
|
+
"Open LDAP Public License v2.5",
|
1589
|
+
false,
|
1590
|
+
false
|
1591
|
+
],
|
1592
|
+
"OLDAP-2.6": [
|
1593
|
+
"Open LDAP Public License v2.6",
|
1594
|
+
false,
|
1595
|
+
false
|
1596
|
+
],
|
1597
|
+
"OLDAP-2.7": [
|
1598
|
+
"Open LDAP Public License v2.7",
|
1599
|
+
false,
|
1600
|
+
false
|
1601
|
+
],
|
1602
|
+
"OLDAP-2.8": [
|
1603
|
+
"Open LDAP Public License v2.8",
|
1604
|
+
false,
|
1605
|
+
false
|
1606
|
+
],
|
1607
|
+
"OML": [
|
1608
|
+
"Open Market License",
|
1609
|
+
false,
|
1610
|
+
false
|
1611
|
+
],
|
1612
|
+
"OpenSSL": [
|
1613
|
+
"OpenSSL License",
|
1614
|
+
false,
|
1615
|
+
false
|
1616
|
+
],
|
1617
|
+
"OPL-1.0": [
|
1618
|
+
"Open Public License v1.0",
|
1619
|
+
false,
|
1620
|
+
false
|
1621
|
+
],
|
1622
|
+
"OSET-PL-2.1": [
|
1623
|
+
"OSET Public License version 2.1",
|
1624
|
+
true,
|
1625
|
+
false
|
1626
|
+
],
|
1627
|
+
"OSL-1.0": [
|
1628
|
+
"Open Software License 1.0",
|
1629
|
+
true,
|
1630
|
+
false
|
1631
|
+
],
|
1632
|
+
"OSL-1.1": [
|
1633
|
+
"Open Software License 1.1",
|
1634
|
+
false,
|
1635
|
+
false
|
1636
|
+
],
|
1637
|
+
"OSL-2.0": [
|
1638
|
+
"Open Software License 2.0",
|
1639
|
+
true,
|
1640
|
+
false
|
1641
|
+
],
|
1642
|
+
"OSL-2.1": [
|
1643
|
+
"Open Software License 2.1",
|
1644
|
+
true,
|
1645
|
+
false
|
1646
|
+
],
|
1647
|
+
"OSL-3.0": [
|
1648
|
+
"Open Software License 3.0",
|
1649
|
+
true,
|
1650
|
+
false
|
1651
|
+
],
|
1652
|
+
"Parity-6.0.0": [
|
1653
|
+
"The Parity Public License 6.0.0",
|
1654
|
+
false,
|
1655
|
+
false
|
1656
|
+
],
|
1657
|
+
"Parity-7.0.0": [
|
1658
|
+
"The Parity Public License 7.0.0",
|
1659
|
+
false,
|
1660
|
+
false
|
1661
|
+
],
|
1662
|
+
"PDDL-1.0": [
|
1663
|
+
"ODC Public Domain Dedication & License 1.0",
|
1664
|
+
false,
|
1665
|
+
false
|
1666
|
+
],
|
1667
|
+
"PHP-3.0": [
|
1668
|
+
"PHP License v3.0",
|
1669
|
+
true,
|
1670
|
+
false
|
1671
|
+
],
|
1672
|
+
"PHP-3.01": [
|
1673
|
+
"PHP License v3.01",
|
1674
|
+
false,
|
1675
|
+
false
|
1676
|
+
],
|
1677
|
+
"Plexus": [
|
1678
|
+
"Plexus Classworlds License",
|
1679
|
+
false,
|
1680
|
+
false
|
1681
|
+
],
|
1682
|
+
"PolyForm-Noncommercial-1.0.0": [
|
1683
|
+
"PolyForm Noncommercial License 1.0.0",
|
1684
|
+
false,
|
1685
|
+
false
|
1686
|
+
],
|
1687
|
+
"PolyForm-Small-Business-1.0.0": [
|
1688
|
+
"PolyForm Small Business License 1.0.0",
|
1689
|
+
false,
|
1690
|
+
false
|
1691
|
+
],
|
1692
|
+
"PostgreSQL": [
|
1693
|
+
"PostgreSQL License",
|
1694
|
+
true,
|
1695
|
+
false
|
1696
|
+
],
|
1697
|
+
"PSF-2.0": [
|
1698
|
+
"Python Software Foundation License 2.0",
|
1699
|
+
false,
|
1700
|
+
false
|
1701
|
+
],
|
1702
|
+
"psfrag": [
|
1703
|
+
"psfrag License",
|
1704
|
+
false,
|
1705
|
+
false
|
1706
|
+
],
|
1707
|
+
"psutils": [
|
1708
|
+
"psutils License",
|
1709
|
+
false,
|
1710
|
+
false
|
1711
|
+
],
|
1712
|
+
"Python-2.0": [
|
1713
|
+
"Python License 2.0",
|
1714
|
+
true,
|
1715
|
+
false
|
1716
|
+
],
|
1717
|
+
"Qhull": [
|
1718
|
+
"Qhull License",
|
1719
|
+
false,
|
1720
|
+
false
|
1721
|
+
],
|
1722
|
+
"QPL-1.0": [
|
1723
|
+
"Q Public License 1.0",
|
1724
|
+
true,
|
1725
|
+
false
|
1726
|
+
],
|
1727
|
+
"Rdisc": [
|
1728
|
+
"Rdisc License",
|
1729
|
+
false,
|
1730
|
+
false
|
1731
|
+
],
|
1732
|
+
"RHeCos-1.1": [
|
1733
|
+
"Red Hat eCos Public License v1.1",
|
1734
|
+
false,
|
1735
|
+
false
|
1736
|
+
],
|
1737
|
+
"RPL-1.1": [
|
1738
|
+
"Reciprocal Public License 1.1",
|
1739
|
+
true,
|
1740
|
+
false
|
1741
|
+
],
|
1742
|
+
"RPL-1.5": [
|
1743
|
+
"Reciprocal Public License 1.5",
|
1744
|
+
true,
|
1745
|
+
false
|
1746
|
+
],
|
1747
|
+
"RPSL-1.0": [
|
1748
|
+
"RealNetworks Public Source License v1.0",
|
1749
|
+
true,
|
1750
|
+
false
|
1751
|
+
],
|
1752
|
+
"RSA-MD": [
|
1753
|
+
"RSA Message-Digest License",
|
1754
|
+
false,
|
1755
|
+
false
|
1756
|
+
],
|
1757
|
+
"RSCPL": [
|
1758
|
+
"Ricoh Source Code Public License",
|
1759
|
+
true,
|
1760
|
+
false
|
1761
|
+
],
|
1762
|
+
"Ruby": [
|
1763
|
+
"Ruby License",
|
1764
|
+
false,
|
1765
|
+
false
|
1766
|
+
],
|
1767
|
+
"SAX-PD": [
|
1768
|
+
"Sax Public Domain Notice",
|
1769
|
+
false,
|
1770
|
+
false
|
1771
|
+
],
|
1772
|
+
"Saxpath": [
|
1773
|
+
"Saxpath License",
|
1774
|
+
false,
|
1775
|
+
false
|
1776
|
+
],
|
1777
|
+
"SCEA": [
|
1778
|
+
"SCEA Shared Source License",
|
1779
|
+
false,
|
1780
|
+
false
|
1781
|
+
],
|
1782
|
+
"Sendmail": [
|
1783
|
+
"Sendmail License",
|
1784
|
+
false,
|
1785
|
+
false
|
1786
|
+
],
|
1787
|
+
"Sendmail-8.23": [
|
1788
|
+
"Sendmail License 8.23",
|
1789
|
+
false,
|
1790
|
+
false
|
1791
|
+
],
|
1792
|
+
"SGI-B-1.0": [
|
1793
|
+
"SGI Free Software License B v1.0",
|
1794
|
+
false,
|
1795
|
+
false
|
1796
|
+
],
|
1797
|
+
"SGI-B-1.1": [
|
1798
|
+
"SGI Free Software License B v1.1",
|
1799
|
+
false,
|
1800
|
+
false
|
1801
|
+
],
|
1802
|
+
"SGI-B-2.0": [
|
1803
|
+
"SGI Free Software License B v2.0",
|
1804
|
+
false,
|
1805
|
+
false
|
1806
|
+
],
|
1807
|
+
"SHL-0.5": [
|
1808
|
+
"Solderpad Hardware License v0.5",
|
1809
|
+
false,
|
1810
|
+
false
|
1811
|
+
],
|
1812
|
+
"SHL-0.51": [
|
1813
|
+
"Solderpad Hardware License, Version 0.51",
|
1814
|
+
false,
|
1815
|
+
false
|
1816
|
+
],
|
1817
|
+
"SimPL-2.0": [
|
1818
|
+
"Simple Public License 2.0",
|
1819
|
+
true,
|
1820
|
+
false
|
1821
|
+
],
|
1822
|
+
"SISSL": [
|
1823
|
+
"Sun Industry Standards Source License v1.1",
|
1824
|
+
true,
|
1825
|
+
false
|
1826
|
+
],
|
1827
|
+
"SISSL-1.2": [
|
1828
|
+
"Sun Industry Standards Source License v1.2",
|
1829
|
+
false,
|
1830
|
+
false
|
1831
|
+
],
|
1832
|
+
"Sleepycat": [
|
1833
|
+
"Sleepycat License",
|
1834
|
+
true,
|
1835
|
+
false
|
1836
|
+
],
|
1837
|
+
"SMLNJ": [
|
1838
|
+
"Standard ML of New Jersey License",
|
1839
|
+
false,
|
1840
|
+
false
|
1841
|
+
],
|
1842
|
+
"SMPPL": [
|
1843
|
+
"Secure Messaging Protocol Public License",
|
1844
|
+
false,
|
1845
|
+
false
|
1846
|
+
],
|
1847
|
+
"SNIA": [
|
1848
|
+
"SNIA Public License 1.1",
|
1849
|
+
false,
|
1850
|
+
false
|
1851
|
+
],
|
1852
|
+
"Spencer-86": [
|
1853
|
+
"Spencer License 86",
|
1854
|
+
false,
|
1855
|
+
false
|
1856
|
+
],
|
1857
|
+
"Spencer-94": [
|
1858
|
+
"Spencer License 94",
|
1859
|
+
false,
|
1860
|
+
false
|
1861
|
+
],
|
1862
|
+
"Spencer-99": [
|
1863
|
+
"Spencer License 99",
|
1864
|
+
false,
|
1865
|
+
false
|
1866
|
+
],
|
1867
|
+
"SPL-1.0": [
|
1868
|
+
"Sun Public License v1.0",
|
1869
|
+
true,
|
1870
|
+
false
|
1871
|
+
],
|
1872
|
+
"SSH-OpenSSH": [
|
1873
|
+
"SSH OpenSSH license",
|
1874
|
+
false,
|
1875
|
+
false
|
1876
|
+
],
|
1877
|
+
"SSH-short": [
|
1878
|
+
"SSH short notice",
|
1879
|
+
false,
|
1880
|
+
false
|
1881
|
+
],
|
1882
|
+
"SSPL-1.0": [
|
1883
|
+
"Server Side Public License, v 1",
|
1884
|
+
false,
|
1885
|
+
false
|
1886
|
+
],
|
1887
|
+
"StandardML-NJ": [
|
1888
|
+
"Standard ML of New Jersey License",
|
1889
|
+
false,
|
1890
|
+
true
|
1891
|
+
],
|
1892
|
+
"SugarCRM-1.1.3": [
|
1893
|
+
"SugarCRM Public License v1.1.3",
|
1894
|
+
false,
|
1895
|
+
false
|
1896
|
+
],
|
1897
|
+
"SWL": [
|
1898
|
+
"Scheme Widget Library (SWL) Software License Agreement",
|
1899
|
+
false,
|
1900
|
+
false
|
1901
|
+
],
|
1902
|
+
"TAPR-OHL-1.0": [
|
1903
|
+
"TAPR Open Hardware License v1.0",
|
1904
|
+
false,
|
1905
|
+
false
|
1906
|
+
],
|
1907
|
+
"TCL": [
|
1908
|
+
"TCL/TK License",
|
1909
|
+
false,
|
1910
|
+
false
|
1911
|
+
],
|
1912
|
+
"TCP-wrappers": [
|
1913
|
+
"TCP Wrappers License",
|
1914
|
+
false,
|
1915
|
+
false
|
1916
|
+
],
|
1917
|
+
"TMate": [
|
1918
|
+
"TMate Open Source License",
|
1919
|
+
false,
|
1920
|
+
false
|
1921
|
+
],
|
1922
|
+
"TORQUE-1.1": [
|
1923
|
+
"TORQUE v2.5+ Software License v1.1",
|
1924
|
+
false,
|
1925
|
+
false
|
1926
|
+
],
|
1927
|
+
"TOSL": [
|
1928
|
+
"Trusster Open Source License",
|
1929
|
+
false,
|
1930
|
+
false
|
1931
|
+
],
|
1932
|
+
"TU-Berlin-1.0": [
|
1933
|
+
"Technische Universitaet Berlin License 1.0",
|
1934
|
+
false,
|
1935
|
+
false
|
1936
|
+
],
|
1937
|
+
"TU-Berlin-2.0": [
|
1938
|
+
"Technische Universitaet Berlin License 2.0",
|
1939
|
+
false,
|
1940
|
+
false
|
1941
|
+
],
|
1942
|
+
"UCL-1.0": [
|
1943
|
+
"Upstream Compatibility License v1.0",
|
1944
|
+
true,
|
1945
|
+
false
|
1946
|
+
],
|
1947
|
+
"Unicode-DFS-2015": [
|
1948
|
+
"Unicode License Agreement - Data Files and Software (2015)",
|
1949
|
+
false,
|
1950
|
+
false
|
1951
|
+
],
|
1952
|
+
"Unicode-DFS-2016": [
|
1953
|
+
"Unicode License Agreement - Data Files and Software (2016)",
|
1954
|
+
false,
|
1955
|
+
false
|
1956
|
+
],
|
1957
|
+
"Unicode-TOU": [
|
1958
|
+
"Unicode Terms of Use",
|
1959
|
+
false,
|
1960
|
+
false
|
1961
|
+
],
|
1962
|
+
"Unlicense": [
|
1963
|
+
"The Unlicense",
|
1964
|
+
false,
|
1965
|
+
false
|
1966
|
+
],
|
1967
|
+
"UPL-1.0": [
|
1968
|
+
"Universal Permissive License v1.0",
|
1969
|
+
true,
|
1970
|
+
false
|
1971
|
+
],
|
1972
|
+
"Vim": [
|
1973
|
+
"Vim License",
|
1974
|
+
false,
|
1975
|
+
false
|
1976
|
+
],
|
1977
|
+
"VOSTROM": [
|
1978
|
+
"VOSTROM Public License for Open Source",
|
1979
|
+
false,
|
1980
|
+
false
|
1981
|
+
],
|
1982
|
+
"VSL-1.0": [
|
1983
|
+
"Vovida Software License v1.0",
|
1984
|
+
true,
|
1985
|
+
false
|
1986
|
+
],
|
1987
|
+
"W3C": [
|
1988
|
+
"W3C Software Notice and License (2002-12-31)",
|
1989
|
+
true,
|
1990
|
+
false
|
1991
|
+
],
|
1992
|
+
"W3C-19980720": [
|
1993
|
+
"W3C Software Notice and License (1998-07-20)",
|
1994
|
+
false,
|
1995
|
+
false
|
1996
|
+
],
|
1997
|
+
"W3C-20150513": [
|
1998
|
+
"W3C Software Notice and Document License (2015-05-13)",
|
1999
|
+
false,
|
2000
|
+
false
|
2001
|
+
],
|
2002
|
+
"Watcom-1.0": [
|
2003
|
+
"Sybase Open Watcom Public License 1.0",
|
2004
|
+
true,
|
2005
|
+
false
|
2006
|
+
],
|
2007
|
+
"Wsuipa": [
|
2008
|
+
"Wsuipa License",
|
2009
|
+
false,
|
2010
|
+
false
|
2011
|
+
],
|
2012
|
+
"WTFPL": [
|
2013
|
+
"Do What The F*ck You Want To Public License",
|
2014
|
+
false,
|
2015
|
+
false
|
2016
|
+
],
|
2017
|
+
"wxWindows": [
|
2018
|
+
"wxWindows Library License",
|
2019
|
+
false,
|
2020
|
+
true
|
2021
|
+
],
|
2022
|
+
"X11": [
|
2023
|
+
"X11 License",
|
2024
|
+
false,
|
2025
|
+
false
|
2026
|
+
],
|
2027
|
+
"Xerox": [
|
2028
|
+
"Xerox License",
|
2029
|
+
false,
|
2030
|
+
false
|
2031
|
+
],
|
2032
|
+
"XFree86-1.1": [
|
2033
|
+
"XFree86 License 1.1",
|
2034
|
+
false,
|
2035
|
+
false
|
2036
|
+
],
|
2037
|
+
"xinetd": [
|
2038
|
+
"xinetd License",
|
2039
|
+
false,
|
2040
|
+
false
|
2041
|
+
],
|
2042
|
+
"Xnet": [
|
2043
|
+
"X.Net License",
|
2044
|
+
true,
|
2045
|
+
false
|
2046
|
+
],
|
2047
|
+
"xpp": [
|
2048
|
+
"XPP License",
|
2049
|
+
false,
|
2050
|
+
false
|
2051
|
+
],
|
2052
|
+
"XSkat": [
|
2053
|
+
"XSkat License",
|
2054
|
+
false,
|
2055
|
+
false
|
2056
|
+
],
|
2057
|
+
"YPL-1.0": [
|
2058
|
+
"Yahoo! Public License v1.0",
|
2059
|
+
false,
|
2060
|
+
false
|
2061
|
+
],
|
2062
|
+
"YPL-1.1": [
|
2063
|
+
"Yahoo! Public License v1.1",
|
2064
|
+
false,
|
2065
|
+
false
|
2066
|
+
],
|
2067
|
+
"Zed": [
|
2068
|
+
"Zed License",
|
2069
|
+
false,
|
2070
|
+
false
|
2071
|
+
],
|
2072
|
+
"Zend-2.0": [
|
2073
|
+
"Zend License v2.0",
|
2074
|
+
false,
|
2075
|
+
false
|
2076
|
+
],
|
2077
|
+
"Zimbra-1.3": [
|
2078
|
+
"Zimbra Public License v1.3",
|
2079
|
+
false,
|
2080
|
+
false
|
2081
|
+
],
|
2082
|
+
"Zimbra-1.4": [
|
2083
|
+
"Zimbra Public License v1.4",
|
2084
|
+
false,
|
2085
|
+
false
|
2086
|
+
],
|
2087
|
+
"Zlib": [
|
2088
|
+
"zlib License",
|
2089
|
+
true,
|
2090
|
+
false
|
2091
|
+
],
|
2092
|
+
"zlib-acknowledgement": [
|
2093
|
+
"zlib/libpng License with Acknowledgement",
|
2094
|
+
false,
|
2095
|
+
false
|
2096
|
+
],
|
2097
|
+
"ZPL-1.1": [
|
2098
|
+
"Zope Public License 1.1",
|
2099
|
+
false,
|
2100
|
+
false
|
2101
|
+
],
|
2102
|
+
"ZPL-2.0": [
|
2103
|
+
"Zope Public License 2.0",
|
2104
|
+
true,
|
2105
|
+
false
|
2106
|
+
],
|
2107
|
+
"ZPL-2.1": [
|
2108
|
+
"Zope Public License 2.1",
|
2109
|
+
false,
|
2110
|
+
false
|
2111
|
+
]
|
2112
|
+
}
|