-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add initial functionality and tests #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fun stuff 😸 Nice to see these old friends again.
I'm going to guess that a bunch of my comments refer to template boilerplate, so point me in the right direction if that is the case 🙃
strategy: | ||
fail-fast: true | ||
matrix: | ||
php: [8.1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No 8.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To my knowledge, Composer config validation depend on the PHP version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gah: Composer config validation doesn't depend on the PHP version
MYSQL_ALLOW_EMPTY_PASSWORD: yes | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
options: | | |
--health-cmd="mysqladmin ping" \ | |
--health-interval=10s \ | |
--health-timeout=5s \ | |
--health-retries=3 |
/** | ||
* Class file for Noop | ||
* | ||
* (c) Alley <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @package wp-find-one |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/** | |
* Class file for Noop | |
* | |
* (c) Alley <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
* | |
* @package wp-find-one | |
/** | |
* Class file for Noop | |
* | |
* Copyright (c) 2022, Alley and the Find One contributors | |
* SPDX-License-Identifier: GPL-2.0-or-later | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
* | |
* @package wp-find-one |
* (c) Alley <[email protected]> | ||
* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* (c) Alley <[email protected]> | |
* | |
* Copyright (c) 2022, Alley and the Find One contributors | |
* SPDX-License-Identifier: GPL-2.0-or-later | |
* |
* (c) Alley <[email protected]> | ||
* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* (c) Alley <[email protected]> | |
* | |
* Copyright (c) 2022, Alley and the Find One contributors | |
* SPDX-License-Identifier: GPL-2.0-or-later | |
* |
* (c) Alley <[email protected]> | ||
* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* (c) Alley <[email protected]> | |
* | |
* Copyright (c) 2022, Alley and the Find One contributors | |
* SPDX-License-Identifier: GPL-2.0-or-later | |
* |
Co-authored-by: Chris Montgomery <[email protected]>
I'm going to proceed knowing that the question of documenting the license is unresolved (here and on other repos). @montchr, please feel free to open issues here in GitHub for anything else you'd like to discuss! |
Summary
As titled.
Notes for reviewers
Tests are expected to fail on multisite runs pending the next release of https://github.com/mantle-framework/testkit.
Changelog entries
Added
Changed
Deprecated
Removed
Fixed
Security