diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 816db37..3ebf309 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -52,4 +52,4 @@ jobs: dependency-versions: "${{ matrix.dependency-versions }}" - name: "Run unit tests (PHPUnit)" - run: "composer test" + run: "composer dev:test:unit" diff --git a/.gitignore b/.gitignore index e9e9d51..d9d6a5c 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ $RECYCLE.BIN/ # Mac crap .DS_Store +.vscode/ diff --git a/README.md b/README.md index c4a9931..dddb2b6 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,12 @@ The main difference is that it relies on and implements the `rodas/http` interfa --- +### Automatic IA Documentation + +[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/Marqitos/php-diactoros) + +--- + ### References - [Laminas components](https://getlaminas.org/) diff --git a/VERSION b/VERSION index 6c6aa7c..3eefcb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +1.0.0 diff --git a/composer.json b/composer.json index d5dc474..6c3cf87 100644 --- a/composer.json +++ b/composer.json @@ -66,9 +66,14 @@ "@cs-check", "@test" ], + "dev:build:clean": "git clean -fX build/", "cs-check": "phpcs", "cs-fix": "phpcbf", - "test": "phpunit --colors=always", + "dev:test:unit": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "scripts-descriptions": { + "dev:build:clean": "Cleans the build/ directory.", + "dev:test:unit": "Runs unit tests." } } diff --git a/src/version.txt b/src/version.txt index 4d06113..670f0e3 100644 --- a/src/version.txt +++ b/src/version.txt @@ -1,2 +1,2 @@ -Commit: dcfcfd5 -Version: 0.1.0 +Commit: 36741dc +Version: 1.0.0