Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor QA #82

Merged
merged 4 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .coveralls.yml

This file was deleted.

10 changes: 6 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/.coveralls.yml export-ignore
/.docheader export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.laminas-ci export-ignore
/.laminas-ci.json export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml.dist export-ignore
/psalm-baseline.xml export-ignore
/test/ export-ignore
/renovate.json export-ignore
/composer.lock export-ignore
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,24 @@ one or more of the following keys under the `extra.laminas` configuration in the
a `Module` class **must** be present in the namespace associated with it.
The setting indicates a low-level component that should be injected to the top
of the modules list of one of:
- `config/application.config.php`
- `config/modules.config.php`
- `config/development.config.php`
- `config/application.config.php`
- `config/modules.config.php`
- `config/development.config.php`

- A **module** is for use specifically with laminas-mvc + laminas-modulemanager;
a `Module` class **must** be present in the namespace associated with it.
The setting indicates a userland or third-party module that should be injected
to the bottom of the modules list of one of:
- `config/application.config.php`
- `config/modules.config.php`
- `config/development.config.php`
- `config/application.config.php`
- `config/modules.config.php`
- `config/development.config.php`

- A **config-provider** is for use with applications that utilize
[laminas-config-aggregator](https://github.com/laminas/laminas-config-aggregator)
(which may or may not be Mezzio applications). The class listed must be an
invokable that returns an array of configuration, and will be injected at the
top of:
- `config/config.php`
- `config/config.php`

## Marking Packages to Auto-Install or to Be Ignored

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.7.0",
"composer/composer": "^2.7.7",
"laminas/laminas-coding-standard": "~2.5.0",
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^10.4",
"psalm/plugin-phpunit": "^0.18.0",
"vimeo/psalm": "^5.15.0",
"phpunit/phpunit": "^10.5.20",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.24.0",
"webmozart/assert": "^1.11.0"
},
"autoload": {
Expand Down
Loading