Skip to content

Commit

Permalink
Improve documentation per component (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
rougin authored May 23, 2024
1 parent b0aad56 commit aabad47
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 41 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,17 @@ Please see [CHANGELOG][link-changelog] for more information what has changed rec

## Testing

To check all test cases written, kindly install the specified third-party packages first:
To check all written test cases, kindly install the specified third-party packages first:

``` bash
$ composer require filp/whoops league/container nikic/fast-route phroute/phroute rdlowrey/auryn twig/twig zendframework/zend-diactoros zendframework/zend-stratigility http-interop/http-middleware:^0.4.1 --dev
$ composer request filp/whoops --dev
$ composer request league/container --dev
$ composer request nikic/fast-route --dev
$ composer request phroute/phroute --dev
$ composer request rdlowrey/auryn --dev
$ composer request twig/twig --dev
$ composer request zendframework/zend-diactoros --dev
$ composer request zendframework/zend-stratigility --dev
$ composer test
```

Expand Down
78 changes: 39 additions & 39 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "rougin/slytherin",
"description": "An extensible and SOLID-based PHP micro-framework.",
"keywords": ["php framework", "php micro-framework", "php package"],
"homepage": "https://roug.in/slytherin/",
"license": "MIT",
"authors":
[
{
"email": "rougingutib@gmail.com",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
"name": "rougin/slytherin",
"description": "An extensible and SOLID-based PHP micro-framework.",
"keywords": ["php framework", "php micro-framework", "php package"],
"homepage": "https://roug.in/slytherin/",
"license": "MIT",
"authors":
[
{
"php": ">=5.3.0",
"psr/http-message": "~1.0",
"psr/container": "~1.0"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7|~6.0|~7.0|~8.0|~9.0",
"sanmai/phpunit-legacy-adapter": "~6.1|~8.0"
},
"autoload":
{
"psr-4":
{
"Rougin\\Slytherin\\": "src"
}
},
"autoload-dev":
"email": "rougingutib@gmail.com",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.3.0",
"psr/http-message": "~1.0",
"psr/container": "~1.0"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7|~6.0|~7.0|~8.0|~9.0",
"sanmai/phpunit-legacy-adapter": "~6.1|~8.0"
},
"autoload":
{
"psr-4":
{
"psr-4":
{
"Rougin\\Slytherin\\": "tests"
}
},
"scripts":
"Rougin\\Slytherin\\": "src"
}
},
"autoload-dev":
{
"psr-4":
{
"test": "phpunit"
"Rougin\\Slytherin\\": "tests"
}
},
"scripts":
{
"test": "phpunit"
}
}

0 comments on commit aabad47

Please sign in to comment.