Compare commits

...

8 Commits

4
.gitattributes vendored

@ -1,5 +1,9 @@
/docs/*.py export-ignore
/docs/*.txt export-ignore
/docs/_* export-ignore
/sandbox export-ignore
/tests export-ignore
/.git* export-ignore
/*.yml export-ignore
/*.xml export-ignore
/*.xml.dist export-ignore

1
.gitignore vendored

@ -3,3 +3,4 @@
/docs/build
vendor
composer.lock
/.phpunit.result.cache

@ -4,7 +4,7 @@
*Jun 7, 2022*
* Shortcut config for `liceneses.allowed` and `packages.allowed`
* Shortcut config for `liceneses.allowed` and `packages.allowed`
## 1.0.1

@ -6,6 +6,12 @@
License management plugin for Composer.
## Installation
```sh
composer require 'arokettu/composer-license-manager'
```
## Features
The plugin is configured in the ``extras`` section of the ``composer.json`` file.
@ -36,12 +42,6 @@ Run ``composer licenses:scan`` to check installed packages for undesired license
With `"enforced": true` (default setting) the plugin will prevent installation of packages with undesired licenses during `composer install` and `composer update`.
## Installation
```sh
composer require 'arokettu/composer-license-manager'
```
## Documentation
Read full documentation here: <https://sandfox.dev/php/composer-license-manager.html>
@ -52,6 +52,8 @@ Also on Read the Docs: <https://composer-license-manager.readthedocs.io/>
Please file issues on our main repo at GitLab: <https://gitlab.com/sandfox/composer-license-manager/-/issues>
Feel free to ask any questions in our room on Gitter: <https://gitter.im/arokettu/community>
## License
The library is available as open source under the terms of the [MIT License].

@ -54,7 +54,7 @@
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^7.5 || ^9.5",
"sandfox.dev/code-standard": "^10@dev",
"sandfox.dev/code-standard": "^1",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^4.23"
}

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
convertDeprecationsToExceptions="true"
executionOrder="random">
executionOrder="random"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<testsuites>
<testsuite name="all">
<directory>tests</directory>

Loading…
Cancel
Save