-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Renamed namespace \Micro\Framework\Kernel to \Micro\Framework\BootDependency; - Moved all classes to root folder; - Removed all static analysis configuration files;
- Loading branch information
1 parent
3387ea0
commit ec73d01
Showing
12 changed files
with
21 additions
and
252 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ composer.lock | |
test-coverage-report | ||
phpunit.xml | ||
.php-cs-fixer.php | ||
phpstan.neon | ||
phpstan.neon | ||
coverage |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,59 +2,33 @@ | |
"name": "micro/kernel-boot-dependency", | ||
"description": "Micro Framework: Kernel Boot loader - component to provide dependencies", | ||
"license": "MIT", | ||
"type": "micro-plugin", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Stanislau Komar", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"micro/autowire": "^1.6", | ||
"micro/kernel": "^1.6" | ||
"micro/autowire": "^2.0", | ||
"micro/kernel": "^2.0" | ||
}, | ||
"require-dev": { | ||
"ergebnis/composer-normalize": "^2.29", | ||
"friendsofphp/php-cs-fixer": "^3.13", | ||
"phpstan/phpstan": "^1.9", | ||
"phpunit/php-code-coverage": "^9.2", | ||
"phpunit/phpunit": "^9.5", | ||
"vimeo/psalm": "^5.2" | ||
"ergebnis/composer-normalize": "^2.34" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Micro\\Framework\\Kernel\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Micro\\Framework\\Kernel\\Test\\Unit\\": "tests/Unit" | ||
} | ||
"Micro\\Framework\\BootDependency\\": "/" | ||
}, | ||
"exclude-from-classmap": [ | ||
"/Tests/" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"ergebnis/composer-normalize": true | ||
}, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-text", | ||
"coverage-html": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html ./test-coverage-report", | ||
"php-cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --verbose --using-cache=no", | ||
"php-cs-try": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --verbose --dry-run --using-cache=no", | ||
"phpstan": "./vendor/bin/phpstan analyze --no-progress", | ||
"phpunit": "./vendor/bin/phpunit", | ||
"psalm": "./vendor/bin/psalm --no-progress --show-info=true --no-cache", | ||
"statics": [ | ||
"@phpstan", | ||
"@psalm", | ||
"@php-cs-try" | ||
], | ||
"test": [ | ||
"@statics", | ||
"composer validate --strict", | ||
"composer normalize", | ||
"@coverage" | ||
] | ||
} | ||
"minimum-stability": "dev" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.