Skip to content
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.

Commit

Permalink
rename orga from qossmic to deptrac (#1453)
Browse files Browse the repository at this point in the history
  • Loading branch information
gennadigennadigennadi authored Feb 17, 2025
1 parent a6dbfaf commit 605ee32
Show file tree
Hide file tree
Showing 267 changed files with 2,520 additions and 2,520 deletions.
1,418 changes: 709 additions & 709 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion LICENCE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright (c) 2018-2022 QOSSMIC GmbH
Copyright (c) 2018-2025 Open Software Consulting GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ or Mermaidjs formatter you can visualize your layers, rules and violations.
## Documentation

You can find the documentation in the /docs directory or visit the doc page:
https://qossmic.github.io/deptrac
https://deptrac.github.io/deptrac

## Getting Started

You can install Deptrac via Composer. We recommend using the
[deptrac](https://github.com/qossmic/deptrac) package for this:
[deptrac](https://github.com/deptrac/deptrac) package for this:

```console
composer require --dev qossmic/deptrac
composer require --dev deptrac/deptrac
```

Once you have downloaded/installed deptrac, you will need to create a
Expand Down Expand Up @@ -55,7 +55,7 @@ You can analyse projects that require an older PHP version as long as

## How to Contribute

See the [contribution guide](docs/CONTRIBUTING.md) or go to development repository [qossmic/deptrac-src](https://github.com/qossmic/deptrac-src).
See the [contribution guide](docs/CONTRIBUTING.md) or go to development repository [deptrac/deptrac-src](https://github.com/deptrac/deptrac-src).

## Further Documentation

Expand Down
2 changes: 1 addition & 1 deletion bin/deptrac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace DEPTRAC_INTERNAL;

use DEPTRAC_INTERNAL\Composer\XdebugHandler\XdebugHandler;
use Qossmic\Deptrac\Supportive\Console\Application;
use Deptrac\Deptrac\Supportive\Console\Application;
if (\PHP_VERSION_ID < 80100) {
echo 'Required at least PHP version 8.1.0, your version: ' . \PHP_VERSION . "\n";
exit(1);
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

// load prefixed or native class, e.g. for running tests
if (str_starts_with($class, 'DEPTRAC_') || str_starts_with($class, 'Qossmic\\Deptrac\\')) {
if (str_starts_with($class, 'DEPTRAC_') || str_starts_with($class, 'Deptrac\\Deptrac\\')) {
if ($composerAutoloader === null) {
// prefixed version autoload
$composerAutoloader = require __DIR__ . '/vendor/autoload.php';
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "qossmic/deptrac",
"name": "deptrac/deptrac",
"description": "Deptrac is a static code analysis tool that helps to enforce rules for dependencies between software layers.",
"keywords": [
"static analysis"
Expand All @@ -18,7 +18,7 @@
},
"autoload": {
"psr-4": {
"Qossmic\\Deptrac\\": "src/"
"Deptrac\\Deptrac\\": "src/"
},
"files": [
"bootstrap.php"
Expand Down
10 changes: 5 additions & 5 deletions config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
declare (strict_types=1);
namespace DEPTRAC_INTERNAL;

use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceCacheInterface;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceDeferredCacheInterface;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceFileCache;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\CacheableFileSubscriber;
use Qossmic\Deptrac\Supportive\Console\Application;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceCacheInterface;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceDeferredCacheInterface;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceFileCache;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\CacheableFileSubscriber;
use Deptrac\Deptrac\Supportive\Console\Application;
use DEPTRAC_INTERNAL\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function DEPTRAC_INTERNAL\Symfony\Component\DependencyInjection\Loader\Configurator\service;
return static function (ContainerConfigurator $container) : void {
Expand Down
206 changes: 103 additions & 103 deletions config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,109 +7,109 @@
use DEPTRAC_INTERNAL\PhpParser\Parser;
use DEPTRAC_INTERNAL\PhpParser\ParserFactory;
use DEPTRAC_INTERNAL\Psr\EventDispatcher\EventDispatcherInterface;
use Qossmic\Deptrac\Contract\Analyser\EventHelper;
use Qossmic\Deptrac\Contract\Config\CollectorType;
use Qossmic\Deptrac\Contract\Config\EmitterType;
use Qossmic\Deptrac\Contract\Layer\LayerProvider;
use Qossmic\Deptrac\Core\Analyser\DependencyLayersAnalyser;
use Qossmic\Deptrac\Core\Analyser\EventHandler\AllowDependencyHandler;
use Qossmic\Deptrac\Core\Analyser\EventHandler\DependsOnDisallowedLayer;
use Qossmic\Deptrac\Core\Analyser\EventHandler\DependsOnInternalToken;
use Qossmic\Deptrac\Core\Analyser\EventHandler\DependsOnPrivateLayer;
use Qossmic\Deptrac\Core\Analyser\EventHandler\MatchingLayersHandler;
use Qossmic\Deptrac\Core\Analyser\EventHandler\UncoveredDependentHandler;
use Qossmic\Deptrac\Core\Analyser\EventHandler\UnmatchedSkippedViolations;
use Qossmic\Deptrac\Core\Analyser\LayerDependenciesAnalyser;
use Qossmic\Deptrac\Core\Analyser\LayerForTokenAnalyser;
use Qossmic\Deptrac\Core\Analyser\RulesetUsageAnalyser;
use Qossmic\Deptrac\Core\Analyser\TokenInLayerAnalyser;
use Qossmic\Deptrac\Core\Analyser\UnassignedTokenAnalyser;
use Qossmic\Deptrac\Core\Ast\AstLoader;
use Qossmic\Deptrac\Core\Ast\AstMapExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceCacheInterface;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceInMemoryCache;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\AnnotationReferenceExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\AnonymousClassExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\ClassConstantExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\FunctionCallResolver;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\FunctionLikeExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\KeywordExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\PropertyExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\StaticExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\Extractors\VariableExtractor;
use Qossmic\Deptrac\Core\Ast\Parser\NikicPhpParser\NikicPhpParser;
use Qossmic\Deptrac\Core\Ast\Parser\ParserInterface;
use Qossmic\Deptrac\Core\Ast\Parser\TypeResolver;
use Qossmic\Deptrac\Core\Dependency\DependencyResolver;
use Qossmic\Deptrac\Core\Dependency\Emitter\ClassDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\ClassSuperglobalDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\FileDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\FunctionCallDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\FunctionDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\FunctionSuperglobalDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\Emitter\UsesDependencyEmitter;
use Qossmic\Deptrac\Core\Dependency\InheritanceFlattener;
use Qossmic\Deptrac\Core\Dependency\TokenResolver;
use Qossmic\Deptrac\Core\InputCollector\FileInputCollector;
use Qossmic\Deptrac\Core\InputCollector\InputCollectorInterface;
use Qossmic\Deptrac\Core\Layer\Collector\AttributeCollector;
use Qossmic\Deptrac\Core\Layer\Collector\BoolCollector;
use Qossmic\Deptrac\Core\Layer\Collector\ClassCollector;
use Qossmic\Deptrac\Core\Layer\Collector\ClassLikeCollector;
use Qossmic\Deptrac\Core\Layer\Collector\ClassNameRegexCollector;
use Qossmic\Deptrac\Core\Layer\Collector\CollectorProvider;
use Qossmic\Deptrac\Core\Layer\Collector\CollectorResolver;
use Qossmic\Deptrac\Core\Layer\Collector\CollectorResolverInterface;
use Qossmic\Deptrac\Core\Layer\Collector\ComposerCollector;
use Qossmic\Deptrac\Core\Layer\Collector\DirectoryCollector;
use Qossmic\Deptrac\Core\Layer\Collector\ExtendsCollector;
use Qossmic\Deptrac\Core\Layer\Collector\FunctionNameCollector;
use Qossmic\Deptrac\Core\Layer\Collector\GlobCollector;
use Qossmic\Deptrac\Core\Layer\Collector\ImplementsCollector;
use Qossmic\Deptrac\Core\Layer\Collector\InheritanceLevelCollector;
use Qossmic\Deptrac\Core\Layer\Collector\InheritsCollector;
use Qossmic\Deptrac\Core\Layer\Collector\InterfaceCollector;
use Qossmic\Deptrac\Core\Layer\Collector\LayerCollector;
use Qossmic\Deptrac\Core\Layer\Collector\MethodCollector;
use Qossmic\Deptrac\Core\Layer\Collector\PhpInternalCollector;
use Qossmic\Deptrac\Core\Layer\Collector\SuperglobalCollector;
use Qossmic\Deptrac\Core\Layer\Collector\TagValueRegexCollector;
use Qossmic\Deptrac\Core\Layer\Collector\TraitCollector;
use Qossmic\Deptrac\Core\Layer\Collector\UsesCollector;
use Qossmic\Deptrac\Core\Layer\LayerResolver;
use Qossmic\Deptrac\Core\Layer\LayerResolverInterface;
use Qossmic\Deptrac\Supportive\Console\Command\AnalyseCommand;
use Qossmic\Deptrac\Supportive\Console\Command\AnalyseRunner;
use Qossmic\Deptrac\Supportive\Console\Command\ChangedFilesCommand;
use Qossmic\Deptrac\Supportive\Console\Command\ChangedFilesRunner;
use Qossmic\Deptrac\Supportive\Console\Command\DebugDependenciesCommand;
use Qossmic\Deptrac\Supportive\Console\Command\DebugDependenciesRunner;
use Qossmic\Deptrac\Supportive\Console\Command\DebugLayerCommand;
use Qossmic\Deptrac\Supportive\Console\Command\DebugLayerRunner;
use Qossmic\Deptrac\Supportive\Console\Command\DebugTokenCommand;
use Qossmic\Deptrac\Supportive\Console\Command\DebugTokenRunner;
use Qossmic\Deptrac\Supportive\Console\Command\DebugUnassignedCommand;
use Qossmic\Deptrac\Supportive\Console\Command\DebugUnassignedRunner;
use Qossmic\Deptrac\Supportive\Console\Command\DebugUnusedCommand;
use Qossmic\Deptrac\Supportive\Console\Command\DebugUnusedRunner;
use Qossmic\Deptrac\Supportive\Console\Command\InitCommand;
use Qossmic\Deptrac\Supportive\File\Dumper;
use Qossmic\Deptrac\Supportive\File\YmlFileLoader;
use Qossmic\Deptrac\Supportive\OutputFormatter\BaselineOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\CodeclimateOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\Configuration\FormatterConfiguration;
use Qossmic\Deptrac\Supportive\OutputFormatter\ConsoleOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\FormatterProvider;
use Qossmic\Deptrac\Supportive\OutputFormatter\GithubActionsOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\GraphVizOutputDisplayFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\GraphVizOutputDotFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\GraphVizOutputHtmlFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\GraphVizOutputImageFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\JsonOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\JUnitOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\MermaidJSOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\TableOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\XMLOutputFormatter;
use Deptrac\Deptrac\Contract\Analyser\EventHelper;
use Deptrac\Deptrac\Contract\Config\CollectorType;
use Deptrac\Deptrac\Contract\Config\EmitterType;
use Deptrac\Deptrac\Contract\Layer\LayerProvider;
use Deptrac\Deptrac\Core\Analyser\DependencyLayersAnalyser;
use Deptrac\Deptrac\Core\Analyser\EventHandler\AllowDependencyHandler;
use Deptrac\Deptrac\Core\Analyser\EventHandler\DependsOnDisallowedLayer;
use Deptrac\Deptrac\Core\Analyser\EventHandler\DependsOnInternalToken;
use Deptrac\Deptrac\Core\Analyser\EventHandler\DependsOnPrivateLayer;
use Deptrac\Deptrac\Core\Analyser\EventHandler\MatchingLayersHandler;
use Deptrac\Deptrac\Core\Analyser\EventHandler\UncoveredDependentHandler;
use Deptrac\Deptrac\Core\Analyser\EventHandler\UnmatchedSkippedViolations;
use Deptrac\Deptrac\Core\Analyser\LayerDependenciesAnalyser;
use Deptrac\Deptrac\Core\Analyser\LayerForTokenAnalyser;
use Deptrac\Deptrac\Core\Analyser\RulesetUsageAnalyser;
use Deptrac\Deptrac\Core\Analyser\TokenInLayerAnalyser;
use Deptrac\Deptrac\Core\Analyser\UnassignedTokenAnalyser;
use Deptrac\Deptrac\Core\Ast\AstLoader;
use Deptrac\Deptrac\Core\Ast\AstMapExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceCacheInterface;
use Deptrac\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceInMemoryCache;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\AnnotationReferenceExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\AnonymousClassExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\ClassConstantExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\FunctionCallResolver;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\FunctionLikeExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\KeywordExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\PropertyExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\StaticExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\Extractors\VariableExtractor;
use Deptrac\Deptrac\Core\Ast\Parser\NikicPhpParser\NikicPhpParser;
use Deptrac\Deptrac\Core\Ast\Parser\ParserInterface;
use Deptrac\Deptrac\Core\Ast\Parser\TypeResolver;
use Deptrac\Deptrac\Core\Dependency\DependencyResolver;
use Deptrac\Deptrac\Core\Dependency\Emitter\ClassDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\ClassSuperglobalDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\FileDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\FunctionCallDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\FunctionDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\FunctionSuperglobalDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\Emitter\UsesDependencyEmitter;
use Deptrac\Deptrac\Core\Dependency\InheritanceFlattener;
use Deptrac\Deptrac\Core\Dependency\TokenResolver;
use Deptrac\Deptrac\Core\InputCollector\FileInputCollector;
use Deptrac\Deptrac\Core\InputCollector\InputCollectorInterface;
use Deptrac\Deptrac\Core\Layer\Collector\AttributeCollector;
use Deptrac\Deptrac\Core\Layer\Collector\BoolCollector;
use Deptrac\Deptrac\Core\Layer\Collector\ClassCollector;
use Deptrac\Deptrac\Core\Layer\Collector\ClassLikeCollector;
use Deptrac\Deptrac\Core\Layer\Collector\ClassNameRegexCollector;
use Deptrac\Deptrac\Core\Layer\Collector\CollectorProvider;
use Deptrac\Deptrac\Core\Layer\Collector\CollectorResolver;
use Deptrac\Deptrac\Core\Layer\Collector\CollectorResolverInterface;
use Deptrac\Deptrac\Core\Layer\Collector\ComposerCollector;
use Deptrac\Deptrac\Core\Layer\Collector\DirectoryCollector;
use Deptrac\Deptrac\Core\Layer\Collector\ExtendsCollector;
use Deptrac\Deptrac\Core\Layer\Collector\FunctionNameCollector;
use Deptrac\Deptrac\Core\Layer\Collector\GlobCollector;
use Deptrac\Deptrac\Core\Layer\Collector\ImplementsCollector;
use Deptrac\Deptrac\Core\Layer\Collector\InheritanceLevelCollector;
use Deptrac\Deptrac\Core\Layer\Collector\InheritsCollector;
use Deptrac\Deptrac\Core\Layer\Collector\InterfaceCollector;
use Deptrac\Deptrac\Core\Layer\Collector\LayerCollector;
use Deptrac\Deptrac\Core\Layer\Collector\MethodCollector;
use Deptrac\Deptrac\Core\Layer\Collector\PhpInternalCollector;
use Deptrac\Deptrac\Core\Layer\Collector\SuperglobalCollector;
use Deptrac\Deptrac\Core\Layer\Collector\TagValueRegexCollector;
use Deptrac\Deptrac\Core\Layer\Collector\TraitCollector;
use Deptrac\Deptrac\Core\Layer\Collector\UsesCollector;
use Deptrac\Deptrac\Core\Layer\LayerResolver;
use Deptrac\Deptrac\Core\Layer\LayerResolverInterface;
use Deptrac\Deptrac\Supportive\Console\Command\AnalyseCommand;
use Deptrac\Deptrac\Supportive\Console\Command\AnalyseRunner;
use Deptrac\Deptrac\Supportive\Console\Command\ChangedFilesCommand;
use Deptrac\Deptrac\Supportive\Console\Command\ChangedFilesRunner;
use Deptrac\Deptrac\Supportive\Console\Command\DebugDependenciesCommand;
use Deptrac\Deptrac\Supportive\Console\Command\DebugDependenciesRunner;
use Deptrac\Deptrac\Supportive\Console\Command\DebugLayerCommand;
use Deptrac\Deptrac\Supportive\Console\Command\DebugLayerRunner;
use Deptrac\Deptrac\Supportive\Console\Command\DebugTokenCommand;
use Deptrac\Deptrac\Supportive\Console\Command\DebugTokenRunner;
use Deptrac\Deptrac\Supportive\Console\Command\DebugUnassignedCommand;
use Deptrac\Deptrac\Supportive\Console\Command\DebugUnassignedRunner;
use Deptrac\Deptrac\Supportive\Console\Command\DebugUnusedCommand;
use Deptrac\Deptrac\Supportive\Console\Command\DebugUnusedRunner;
use Deptrac\Deptrac\Supportive\Console\Command\InitCommand;
use Deptrac\Deptrac\Supportive\File\Dumper;
use Deptrac\Deptrac\Supportive\File\YmlFileLoader;
use Deptrac\Deptrac\Supportive\OutputFormatter\BaselineOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\CodeclimateOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\Configuration\FormatterConfiguration;
use Deptrac\Deptrac\Supportive\OutputFormatter\ConsoleOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\FormatterProvider;
use Deptrac\Deptrac\Supportive\OutputFormatter\GithubActionsOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\GraphVizOutputDisplayFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\GraphVizOutputDotFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\GraphVizOutputHtmlFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\GraphVizOutputImageFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\JsonOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\JUnitOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\MermaidJSOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\TableOutputFormatter;
use Deptrac\Deptrac\Supportive\OutputFormatter\XMLOutputFormatter;
use DEPTRAC_INTERNAL\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use DEPTRAC_INTERNAL\Symfony\Component\EventDispatcher\EventDispatcher;
use function DEPTRAC_INTERNAL\Symfony\Component\DependencyInjection\Loader\Configurator\param;
Expand Down
4 changes: 2 additions & 2 deletions docs/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ harassment and will take action against any individual who is not acting
professionally. This can range from reprimanding them privately to blocking them
from interacting with the repository.

[QOSSMIC](https://qossmic.com) as owner is responsible for upholding the code of conduct
[QOSSMIC](https://open.de) as owner is responsible for upholding the code of conduct
and should be contacted if you have any issues. Please use the following email
for this: [wecare@qossmic.com](mailto:wecare@qossmic.com?subject=Deptrac)
for this: [wecare@open.de](mailto:wecare@open.de?subject=Deptrac)
2 changes: 1 addition & 1 deletion docs/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ maintainers.

If you think you have found a security issue in Deptrac, we ask you not to use
the bug tracker and to not publish it publicly. Instead, all security issues
must be sent to [security@qossmic.com](mailto:security@qossmic.com?subject=deptrac).
must be sent to [security@open.de](mailto:security@open.de?subject=deptrac).

## Security bug bounties

Expand Down
2 changes: 1 addition & 1 deletion docs/bc_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ following breaking changes only to happen in a major release:
## Code

The following backwards compatibility promise extends only to code in the
`Qossmic\Deptrac\Contract\` namespace. Other code may change within a major
`Deptrac\Deptrac\Contract\` namespace. Other code may change within a major
release, unless it is marked explicitly as `@public`. Conversely, if anything in
the Contract namespace is marked as `@internal` the BC promise does not apply.

Expand Down
Loading

0 comments on commit 605ee32

Please sign in to comment.