├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── adr.yml ├── bin └── phpadr ├── composer.json ├── composer.lock ├── docs └── arch │ ├── 0001-documenting-architecture-decisions.md │ ├── 0002-develop-tool-to-manage-adrs.md │ ├── 0003-php-as-scripting-language.md │ ├── 0004-composer-as-dependency-management.md │ ├── 0005-phpunit-as-testing-framework.md │ └── 0006-yaml-as-configuration-file.md ├── phpunit.xml ├── src ├── Command │ ├── MakeDecisionCommand.php │ ├── WorkspaceCountCommand.php │ └── WorkspaceListCommand.php ├── Domain │ ├── DecisionContent.php │ ├── DecisionRecord.php │ └── Sequence.php └── Filesystem │ ├── Config.php │ └── Workspace.php ├── template └── skeleton.md └── tests ├── Command ├── MakeDecisionCommandTest.php ├── WorkspaceCountCommandTest.php └── WorkspaceListCommandTest.php ├── Domain ├── DecisionContentTest.php ├── DecisionRecordTest.php └── SequenceTest.php └── Filesystem ├── ConfigTest.php └── WorkspaceTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Composer 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/README.md -------------------------------------------------------------------------------- /adr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/adr.yml -------------------------------------------------------------------------------- /bin/phpadr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/bin/phpadr -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/arch/0001-documenting-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0001-documenting-architecture-decisions.md -------------------------------------------------------------------------------- /docs/arch/0002-develop-tool-to-manage-adrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0002-develop-tool-to-manage-adrs.md -------------------------------------------------------------------------------- /docs/arch/0003-php-as-scripting-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0003-php-as-scripting-language.md -------------------------------------------------------------------------------- /docs/arch/0004-composer-as-dependency-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0004-composer-as-dependency-management.md -------------------------------------------------------------------------------- /docs/arch/0005-phpunit-as-testing-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0005-phpunit-as-testing-framework.md -------------------------------------------------------------------------------- /docs/arch/0006-yaml-as-configuration-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/docs/arch/0006-yaml-as-configuration-file.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Command/MakeDecisionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Command/MakeDecisionCommand.php -------------------------------------------------------------------------------- /src/Command/WorkspaceCountCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Command/WorkspaceCountCommand.php -------------------------------------------------------------------------------- /src/Command/WorkspaceListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Command/WorkspaceListCommand.php -------------------------------------------------------------------------------- /src/Domain/DecisionContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Domain/DecisionContent.php -------------------------------------------------------------------------------- /src/Domain/DecisionRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Domain/DecisionRecord.php -------------------------------------------------------------------------------- /src/Domain/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Domain/Sequence.php -------------------------------------------------------------------------------- /src/Filesystem/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Filesystem/Config.php -------------------------------------------------------------------------------- /src/Filesystem/Workspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/src/Filesystem/Workspace.php -------------------------------------------------------------------------------- /template/skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/template/skeleton.md -------------------------------------------------------------------------------- /tests/Command/MakeDecisionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Command/MakeDecisionCommandTest.php -------------------------------------------------------------------------------- /tests/Command/WorkspaceCountCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Command/WorkspaceCountCommandTest.php -------------------------------------------------------------------------------- /tests/Command/WorkspaceListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Command/WorkspaceListCommandTest.php -------------------------------------------------------------------------------- /tests/Domain/DecisionContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Domain/DecisionContentTest.php -------------------------------------------------------------------------------- /tests/Domain/DecisionRecordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Domain/DecisionRecordTest.php -------------------------------------------------------------------------------- /tests/Domain/SequenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Domain/SequenceTest.php -------------------------------------------------------------------------------- /tests/Filesystem/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Filesystem/ConfigTest.php -------------------------------------------------------------------------------- /tests/Filesystem/WorkspaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globtec/phpadr/HEAD/tests/Filesystem/WorkspaceTest.php --------------------------------------------------------------------------------