Skip to content

Commit eadd31b

Browse files
authored
docs: style (#337)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 84fd1f0 commit eadd31b

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ composer.lock text eol=lf diff=json
2727
/psalm.xml.dist export-ignore
2828

2929
# files that are forced to be exported in "dist" releases
30+
/HISTORY.* -export-ignore
3031
/README.* -export-ignore
3132
/NOTICE -export-ignore
3233
/LICENSE -export-ignore

HISTORY.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ All notable changes to this project will be documented in this file.
3030
* might have `metadata.timestamp` populated ([#112] via [#250])
3131
* might have `metadata.tools[].tool.externalReferences` populated ([#171] via [#250])
3232
* might have `components[].component.author` populated ([#261] via [#250])
33-
* might have `components[].component.properties` populated according to [`cdx:composer` Namespace Taxonomy](https://github.com/CycloneDX/cyclonedx-property-taxonomy/blob/main/cdx/composer.md) (via [#250])
33+
* might have `components[].component.properties` populated according to [`cdx:composer` Namespace Taxonomy](https://github.com/CycloneDX/cyclonedx-property-taxonomy/blob/main/cdx/composer.md) ([#313] via [#250])
3434
* CLI
3535
* New option `omit` (via [#250])
3636
* New switch `validate` to override `no-validate` (via [#250])
@@ -63,15 +63,6 @@ All notable changes to this project will be documented in this file.
6363
[#293]: https://github.com/CycloneDX/cyclonedx-php-composer/issues/293
6464
[#308]: https://github.com/CycloneDX/cyclonedx-php-composer/pull/308
6565

66-
## 3.11.0 - 2023-02-11
67-
68-
* Changed
69-
* CLI via `composer make-bom` became deprecated, use `composer CycloneDX:make-sbom` instead. ([#293] via [#308])
70-
The composer command `make-bom` will be removed in the next major version.
71-
72-
[#293]: https://github.com/CycloneDX/cyclonedx-php-composer/issues/293
73-
[#308]: https://github.com/CycloneDX/cyclonedx-php-composer/pull/308
74-
7566
## 3.10.2 - 2022-09-15
7667

7768
Maintenance Release.

README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,21 @@ For a demo of _cyclonedx-php-composer_ see the [demo projects][demo_readme].
8888

8989
## How it works
9090

91-
This composer plugin actually utilizes composer itself, to collect evidence for installed composer packages.
91+
This tool utilizes composer itself, to collect evidence for installed composer packages.
9292
In terms of evidence collection, actually installed setups are preferred over pure lock file analysis.
93-
Required evidence:
94-
- composer config/manifest file (e.g. `composer.json` file)
95-
- any of:
96-
- an actual composer setup (e.g. `vendor` directory, after running `composer install` on your project)
97-
- a working composer lock file (e.g. `composer.lock` file)
93+
Required evidence:
94+
95+
* composer config/manifest file (e.g. `composer.json` file)
96+
* any of:
97+
* an actual composer setup (the result after running `composer install [...]` on your project)
98+
* a working composer lock file (e.g. `composer.lock` file)
9899

99100
## Internals
100101

101-
This _Composer_ plugin utilizes the [CycloneDX library][cyclonedx-library] to generate the actual data structures.
102+
This tool utilizes the [CycloneDX PHP library][cyclonedx-php-library] to generate the actual data structures,
103+
normalize/serializ them and validate the SBOM result.
102104

103-
This _Composer_ plugin does **not** expose any additional _public_ API or classes - all code is marked as `@internal` and might change without any notice during version upgrades.
105+
This tool does **not** expose any additional _public_ API or classes - all code is marked as `@internal` and might change without any notice during version upgrades.
104106

105107
## Contributing
106108

@@ -116,7 +118,7 @@ See the [LICENSE][license_file] file for the full license.
116118
[contributing_file]: https://github.com/CycloneDX/cyclonedx-php-composer/blob/master/CONTRIBUTING.md
117119
[demo_readme]: https://github.com/CycloneDX/cyclonedx-php-composer/blob/master/demo/README.md
118120

119-
[cyclonedx-library]: https://packagist.org/packages/cyclonedx/cyclonedx-library
121+
[cyclonedx-php-library]: https://packagist.org/packages/cyclonedx/cyclonedx-library
120122

121123
[shield_gh-workflow-test]: https://img.shields.io/github/actions/workflow/status/CycloneDX/cyclonedx-php-composer/php.yml?branch=master&logo=GitHub&logoColor=white "build"
122124
[shield_packagist-version]: https://img.shields.io/packagist/v/cyclonedx/cyclonedx-php-composer?logo=Packagist&logoColor=white "packagist"

0 commit comments

Comments
 (0)