├── .editorconfig ├── .gitattributes.template ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Feature_Request.md │ ├── Question.md │ └── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── continuous-integration.yml │ └── merge-me.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── .gitkeep ├── captainhook.json ├── codecov.yml ├── composer.json ├── conventional-commits.json ├── docs └── .gitkeep ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── psalm.xml ├── resources ├── .gitkeep └── templates │ ├── CHANGELOG.md.twig │ ├── CONTRIBUTING.md.twig │ ├── FUNDING.yml.twig │ ├── code-of-conduct │ ├── Citizen-2.3.md.twig │ ├── Contributor-1.4.md.twig │ ├── Contributor-2.0.md.twig │ └── Contributor-2.1.md.twig │ ├── header │ ├── AGPL-3.0-or-later.twig │ ├── Apache-2.0.twig │ ├── BSD-2-Clause.twig │ ├── BSD-3-Clause.twig │ ├── CC0-1.0.twig │ ├── GPL-3.0-or-later.twig │ ├── Hippocratic-2.1.twig │ ├── LGPL-3.0-or-later.twig │ ├── MIT-0.twig │ ├── MIT.twig │ ├── MPL-2.0.twig │ ├── Proprietary.twig │ ├── Unlicense.twig │ └── source-file-header.twig │ ├── license │ ├── AGPL-3.0-or-later-NOTICE.twig │ ├── AGPL-3.0-or-later.twig │ ├── Apache-2.0-NOTICE.twig │ ├── Apache-2.0.twig │ ├── BSD-2-Clause.twig │ ├── BSD-3-Clause.twig │ ├── CC0-1.0.twig │ ├── GPL-3.0-or-later-NOTICE.twig │ ├── GPL-3.0-or-later.twig │ ├── Hippocratic-2.1.twig │ ├── LGPL-3.0-or-later-NOTICE.twig │ ├── LGPL-3.0-or-later.twig │ ├── MIT-0.twig │ ├── MIT.twig │ ├── MPL-2.0-NOTICE.twig │ ├── MPL-2.0.twig │ ├── Proprietary.twig │ ├── Unlicense.twig │ └── copyright-statement.twig │ ├── readme │ ├── badges.md.twig │ ├── code-of-conduct.md.twig │ ├── copyright.md.twig │ ├── description.md.twig │ ├── security.md.twig │ └── usage.md.twig │ └── security-policy │ └── HackerOne.md.twig ├── src ├── Example.php └── LibraryStarterKit │ ├── Answers.php │ ├── Console │ ├── InstallQuestions.php │ ├── Question │ │ ├── AnswersTool.php │ │ ├── AuthorEmail.php │ │ ├── AuthorHoldsCopyright.php │ │ ├── AuthorName.php │ │ ├── AuthorUrl.php │ │ ├── CodeOfConduct.php │ │ ├── CodeOfConductCommittee.php │ │ ├── CodeOfConductEmail.php │ │ ├── CodeOfConductPoliciesUrl.php │ │ ├── CodeOfConductReportingUrl.php │ │ ├── CopyrightEmail.php │ │ ├── CopyrightHolder.php │ │ ├── CopyrightUrl.php │ │ ├── CopyrightYear.php │ │ ├── EmailValidatorTool.php │ │ ├── GithubUsername.php │ │ ├── License.php │ │ ├── PackageDescription.php │ │ ├── PackageKeywords.php │ │ ├── PackageName.php │ │ ├── PackageNamespace.php │ │ ├── SecurityPolicy.php │ │ ├── SecurityPolicyContactEmail.php │ │ ├── SecurityPolicyContactFormUrl.php │ │ ├── SkippableQuestion.php │ │ ├── StarterKitQuestion.php │ │ ├── UrlValidatorTool.php │ │ └── VendorName.php │ ├── Style.php │ └── StyleFactory.php │ ├── Exception │ ├── InvalidConsoleInput.php │ └── StarterKitException.php │ ├── Filesystem.php │ ├── Project.php │ ├── Setup.php │ ├── Task │ ├── Build.php │ ├── Builder.php │ └── Builder │ │ ├── Cleanup.php │ │ ├── FixStyle.php │ │ ├── InstallDependencies.php │ │ ├── RenameTemplates.php │ │ ├── RunTests.php │ │ ├── SetupRepository.php │ │ ├── UpdateChangelog.php │ │ ├── UpdateCodeOfConduct.php │ │ ├── UpdateComposerJson.php │ │ ├── UpdateContributing.php │ │ ├── UpdateFunding.php │ │ ├── UpdateLicense.php │ │ ├── UpdateNamespace.php │ │ ├── UpdateReadme.php │ │ ├── UpdateSecurityPolicy.php │ │ └── UpdateSourceFileHeaders.php │ └── Wizard.php └── tests ├── ExampleTest.php ├── LibraryStarterKit ├── AnswersTest.php ├── Console │ ├── InstallQuestionsTest.php │ ├── Question │ │ ├── AuthorEmailTest.php │ │ ├── AuthorHoldsCopyrightTest.php │ │ ├── AuthorNameTest.php │ │ ├── AuthorUrlTest.php │ │ ├── CodeOfConductCommitteeTest.php │ │ ├── CodeOfConductEmailTest.php │ │ ├── CodeOfConductPoliciesUrlTest.php │ │ ├── CodeOfConductReportingUrlTest.php │ │ ├── CodeOfConductTest.php │ │ ├── CopyrightEmailTest.php │ │ ├── CopyrightHolderTest.php │ │ ├── CopyrightUrlTest.php │ │ ├── CopyrightYearTest.php │ │ ├── EmailValidatorToolTest.php │ │ ├── GithubUsernameTest.php │ │ ├── LicenseTest.php │ │ ├── PackageDescriptionTest.php │ │ ├── PackageKeywordsTest.php │ │ ├── PackageNameTest.php │ │ ├── PackageNamespaceTest.php │ │ ├── QuestionTestCase.php │ │ ├── SecurityPolicyContactEmailTest.php │ │ ├── SecurityPolicyContactFormUrlTest.php │ │ ├── SecurityPolicyTest.php │ │ ├── UrlValidatorToolTest.php │ │ └── VendorNameTest.php │ └── StyleFactoryTest.php ├── FilesystemTest.php ├── ProjectTest.php ├── SetupTest.php ├── SnapshotsTool.php ├── Task │ ├── BuildTest.php │ ├── Builder │ │ ├── CleanupTest.php │ │ ├── FixStyleTest.php │ │ ├── InstallDependenciesTest.php │ │ ├── RenameTemplatesTest.php │ │ ├── RunTestsTest.php │ │ ├── SetupRepositoryTest.php │ │ ├── UpdateChangelogTest.php │ │ ├── UpdateCodeOfConductTest.php │ │ ├── UpdateComposerJsonTest.php │ │ ├── UpdateContributingTest.php │ │ ├── UpdateFundingTest.php │ │ ├── UpdateLicenseTest.php │ │ ├── UpdateNamespaceTest.php │ │ ├── UpdateReadmeTest.php │ │ ├── UpdateSecurityPolicyTest.php │ │ ├── UpdateSourceFileHeadersTest.php │ │ ├── __snapshots__ │ │ │ ├── UpdateComposerJsonTest__testBuildWithMinimalComposerJson__1.txt │ │ │ ├── UpdateComposerJsonTest__testBuild__1.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__1.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__2.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__3.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__4.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__5.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__0__6.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__1.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__2.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__3.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__4.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__5.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__1__6.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__1.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__2.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__3.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__4.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__5.txt │ │ │ ├── UpdateNamespaceTest__testBuild_with_data_set__2__6.txt │ │ │ ├── UpdateReadmeTest__testBuildWhenCodeOfConductIsNullAndSecurityPolicyIsFalse__1.txt │ │ │ ├── UpdateReadmeTest__testBuildWhenCodeOfConductIsNull__1.txt │ │ │ ├── UpdateReadmeTest__testBuild__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__0__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__0__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__10__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__10__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__11__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__11__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__1__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__1__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__2__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__2__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__3__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__3__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__4__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__4__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__5__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__5__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__6__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__6__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__7__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__7__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__8__1.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__8__2.txt │ │ │ ├── UpdateSourceFileHeadersTest__testBuild_with_data_set__9__1.txt │ │ │ └── UpdateSourceFileHeadersTest__testBuild_with_data_set__9__2.txt │ │ └── fixtures │ │ │ ├── composer-full.json │ │ │ ├── composer-minimal.json │ │ │ ├── readme-full.md │ │ │ ├── update-namespace-test.php │ │ │ ├── update-source-file-headers-test-1.php │ │ │ └── update-source-file-headers-test-2.php │ └── BuilderTest.php ├── TestCase.php ├── WindowsSafeTextDriver.php ├── WizardTest.php └── answers-test.json └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.gitattributes.template -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/ISSUE_TEMPLATE/Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/merge-me.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.github/workflows/merge-me.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captainhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/captainhook.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/composer.json -------------------------------------------------------------------------------- /conventional-commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/conventional-commits.json -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/psalm.xml -------------------------------------------------------------------------------- /resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/templates/CHANGELOG.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/CHANGELOG.md.twig -------------------------------------------------------------------------------- /resources/templates/CONTRIBUTING.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/CONTRIBUTING.md.twig -------------------------------------------------------------------------------- /resources/templates/FUNDING.yml.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/templates/code-of-conduct/Citizen-2.3.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/code-of-conduct/Citizen-2.3.md.twig -------------------------------------------------------------------------------- /resources/templates/code-of-conduct/Contributor-1.4.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/code-of-conduct/Contributor-1.4.md.twig -------------------------------------------------------------------------------- /resources/templates/code-of-conduct/Contributor-2.0.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/code-of-conduct/Contributor-2.0.md.twig -------------------------------------------------------------------------------- /resources/templates/code-of-conduct/Contributor-2.1.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/code-of-conduct/Contributor-2.1.md.twig -------------------------------------------------------------------------------- /resources/templates/header/AGPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/AGPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/header/Apache-2.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/Apache-2.0.twig -------------------------------------------------------------------------------- /resources/templates/header/BSD-2-Clause.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/BSD-2-Clause.twig -------------------------------------------------------------------------------- /resources/templates/header/BSD-3-Clause.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/BSD-3-Clause.twig -------------------------------------------------------------------------------- /resources/templates/header/CC0-1.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/CC0-1.0.twig -------------------------------------------------------------------------------- /resources/templates/header/GPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/GPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/header/Hippocratic-2.1.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/Hippocratic-2.1.twig -------------------------------------------------------------------------------- /resources/templates/header/LGPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/LGPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/header/MIT-0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/MIT-0.twig -------------------------------------------------------------------------------- /resources/templates/header/MIT.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/MIT.twig -------------------------------------------------------------------------------- /resources/templates/header/MPL-2.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/MPL-2.0.twig -------------------------------------------------------------------------------- /resources/templates/header/Proprietary.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/Proprietary.twig -------------------------------------------------------------------------------- /resources/templates/header/Unlicense.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/Unlicense.twig -------------------------------------------------------------------------------- /resources/templates/header/source-file-header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/header/source-file-header.twig -------------------------------------------------------------------------------- /resources/templates/license/AGPL-3.0-or-later-NOTICE.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/AGPL-3.0-or-later-NOTICE.twig -------------------------------------------------------------------------------- /resources/templates/license/AGPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/AGPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/license/Apache-2.0-NOTICE.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/Apache-2.0-NOTICE.twig -------------------------------------------------------------------------------- /resources/templates/license/Apache-2.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/Apache-2.0.twig -------------------------------------------------------------------------------- /resources/templates/license/BSD-2-Clause.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/BSD-2-Clause.twig -------------------------------------------------------------------------------- /resources/templates/license/BSD-3-Clause.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/BSD-3-Clause.twig -------------------------------------------------------------------------------- /resources/templates/license/CC0-1.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/CC0-1.0.twig -------------------------------------------------------------------------------- /resources/templates/license/GPL-3.0-or-later-NOTICE.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/GPL-3.0-or-later-NOTICE.twig -------------------------------------------------------------------------------- /resources/templates/license/GPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/GPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/license/Hippocratic-2.1.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/Hippocratic-2.1.twig -------------------------------------------------------------------------------- /resources/templates/license/LGPL-3.0-or-later-NOTICE.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/LGPL-3.0-or-later-NOTICE.twig -------------------------------------------------------------------------------- /resources/templates/license/LGPL-3.0-or-later.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/LGPL-3.0-or-later.twig -------------------------------------------------------------------------------- /resources/templates/license/MIT-0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/MIT-0.twig -------------------------------------------------------------------------------- /resources/templates/license/MIT.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/MIT.twig -------------------------------------------------------------------------------- /resources/templates/license/MPL-2.0-NOTICE.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/MPL-2.0-NOTICE.twig -------------------------------------------------------------------------------- /resources/templates/license/MPL-2.0.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/MPL-2.0.twig -------------------------------------------------------------------------------- /resources/templates/license/Proprietary.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/Proprietary.twig -------------------------------------------------------------------------------- /resources/templates/license/Unlicense.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/Unlicense.twig -------------------------------------------------------------------------------- /resources/templates/license/copyright-statement.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/license/copyright-statement.twig -------------------------------------------------------------------------------- /resources/templates/readme/badges.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/badges.md.twig -------------------------------------------------------------------------------- /resources/templates/readme/code-of-conduct.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/code-of-conduct.md.twig -------------------------------------------------------------------------------- /resources/templates/readme/copyright.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/copyright.md.twig -------------------------------------------------------------------------------- /resources/templates/readme/description.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/description.md.twig -------------------------------------------------------------------------------- /resources/templates/readme/security.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/security.md.twig -------------------------------------------------------------------------------- /resources/templates/readme/usage.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/readme/usage.md.twig -------------------------------------------------------------------------------- /resources/templates/security-policy/HackerOne.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/resources/templates/security-policy/HackerOne.md.twig -------------------------------------------------------------------------------- /src/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/Example.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Answers.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/InstallQuestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/InstallQuestions.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/AnswersTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/AnswersTool.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/AuthorEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/AuthorEmail.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/AuthorHoldsCopyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/AuthorHoldsCopyright.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/AuthorName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/AuthorName.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/AuthorUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/AuthorUrl.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CodeOfConduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CodeOfConduct.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CodeOfConductCommittee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CodeOfConductCommittee.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CodeOfConductEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CodeOfConductEmail.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CodeOfConductPoliciesUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CodeOfConductPoliciesUrl.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CodeOfConductReportingUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CodeOfConductReportingUrl.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CopyrightEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CopyrightEmail.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CopyrightHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CopyrightHolder.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CopyrightUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CopyrightUrl.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/CopyrightYear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/CopyrightYear.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/EmailValidatorTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/EmailValidatorTool.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/GithubUsername.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/GithubUsername.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/License.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/PackageDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/PackageDescription.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/PackageKeywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/PackageKeywords.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/PackageName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/PackageName.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/PackageNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/PackageNamespace.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/SecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/SecurityPolicy.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/SecurityPolicyContactEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/SecurityPolicyContactEmail.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/SecurityPolicyContactFormUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/SecurityPolicyContactFormUrl.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/SkippableQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/SkippableQuestion.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/StarterKitQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/StarterKitQuestion.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/UrlValidatorTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/UrlValidatorTool.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Question/VendorName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Question/VendorName.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/Style.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Console/StyleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Console/StyleFactory.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Exception/InvalidConsoleInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Exception/InvalidConsoleInput.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Exception/StarterKitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Exception/StarterKitException.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Filesystem.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Project.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Setup.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Build.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/Cleanup.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/FixStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/FixStyle.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/InstallDependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/InstallDependencies.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/RenameTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/RenameTemplates.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/RunTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/RunTests.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/SetupRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/SetupRepository.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateChangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateChangelog.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateCodeOfConduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateCodeOfConduct.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateComposerJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateComposerJson.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateContributing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateContributing.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateFunding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateFunding.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateLicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateLicense.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateNamespace.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateReadme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateReadme.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateSecurityPolicy.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Task/Builder/UpdateSourceFileHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Task/Builder/UpdateSourceFileHeaders.php -------------------------------------------------------------------------------- /src/LibraryStarterKit/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/src/LibraryStarterKit/Wizard.php -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/AnswersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/AnswersTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/InstallQuestionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/InstallQuestionsTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/AuthorEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/AuthorEmailTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/AuthorHoldsCopyrightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/AuthorHoldsCopyrightTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/AuthorNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/AuthorNameTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/AuthorUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/AuthorUrlTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CodeOfConductCommitteeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CodeOfConductCommitteeTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CodeOfConductEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CodeOfConductEmailTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CodeOfConductPoliciesUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CodeOfConductPoliciesUrlTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CodeOfConductReportingUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CodeOfConductReportingUrlTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CodeOfConductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CodeOfConductTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CopyrightEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CopyrightEmailTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CopyrightHolderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CopyrightHolderTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CopyrightUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CopyrightUrlTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/CopyrightYearTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/CopyrightYearTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/EmailValidatorToolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/EmailValidatorToolTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/GithubUsernameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/GithubUsernameTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/LicenseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/LicenseTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/PackageDescriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/PackageDescriptionTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/PackageKeywordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/PackageKeywordsTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/PackageNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/PackageNameTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/PackageNamespaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/PackageNamespaceTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/QuestionTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/QuestionTestCase.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/SecurityPolicyContactEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/SecurityPolicyContactEmailTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/SecurityPolicyContactFormUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/SecurityPolicyContactFormUrlTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/SecurityPolicyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/SecurityPolicyTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/UrlValidatorToolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/UrlValidatorToolTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/Question/VendorNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/Question/VendorNameTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Console/StyleFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Console/StyleFactoryTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/FilesystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/FilesystemTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/ProjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/ProjectTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/SetupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/SetupTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/SnapshotsTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/SnapshotsTool.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/BuildTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/BuildTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/CleanupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/CleanupTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/FixStyleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/FixStyleTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/InstallDependenciesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/InstallDependenciesTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/RenameTemplatesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/RenameTemplatesTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/RunTestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/RunTestsTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/SetupRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/SetupRepositoryTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateChangelogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateChangelogTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateCodeOfConductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateCodeOfConductTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateComposerJsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateComposerJsonTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateContributingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateContributingTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateFundingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateFundingTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateLicenseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateLicenseTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateNamespaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateNamespaceTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateReadmeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateReadmeTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateSecurityPolicyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateSecurityPolicyTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/UpdateSourceFileHeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/UpdateSourceFileHeadersTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateComposerJsonTest__testBuildWithMinimalComposerJson__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateComposerJsonTest__testBuildWithMinimalComposerJson__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateComposerJsonTest__testBuild__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateComposerJsonTest__testBuild__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__1.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Foo.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__3.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Bar.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__4.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__5.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/composer.json -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__0__6.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__1.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Foo.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__3.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Bar.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__4.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__5.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/composer.json -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__1__6.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__1.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Foo.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__3.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/src/Bar.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__4.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__5.txt: -------------------------------------------------------------------------------- 1 | /path/to/app/composer.json -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateNamespaceTest__testBuild_with_data_set__2__6.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuildWhenCodeOfConductIsNullAndSecurityPolicyIsFalse__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuildWhenCodeOfConductIsNullAndSecurityPolicyIsFalse__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuildWhenCodeOfConductIsNull__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuildWhenCodeOfConductIsNull__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuild__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateReadmeTest__testBuild__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__0__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__0__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__0__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__0__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__10__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__10__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__10__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__10__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__11__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__11__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__11__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__11__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__1__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__1__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__1__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__1__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__2__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__2__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__2__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__2__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__3__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__3__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__3__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__3__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__4__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__4__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__4__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__4__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__5__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__5__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__5__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__5__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__6__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__6__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__6__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__6__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__7__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__7__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__7__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__7__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__8__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__8__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__8__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__8__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__9__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__9__1.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__9__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/__snapshots__/UpdateSourceFileHeadersTest__testBuild_with_data_set__9__2.txt -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/composer-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/composer-full.json -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/composer-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/composer-minimal.json -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/readme-full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/readme-full.md -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/update-namespace-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/update-namespace-test.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/update-source-file-headers-test-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/update-source-file-headers-test-1.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/Builder/fixtures/update-source-file-headers-test-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/Builder/fixtures/update-source-file-headers-test-2.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/Task/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/Task/BuilderTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/TestCase.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/WindowsSafeTextDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/WindowsSafeTextDriver.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/WizardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/WizardTest.php -------------------------------------------------------------------------------- /tests/LibraryStarterKit/answers-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/LibraryStarterKit/answers-test.json -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/php-library-starter-kit/HEAD/tests/TestCase.php --------------------------------------------------------------------------------