Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation per component #30

Merged
merged 2 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}
Loading