Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Add PHPUnit testing framework #181

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
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
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"amphp/http-client": "^4.6"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
"roave/security-advisories": "dev-latest",
"symfony/test-pack": "^1.0"
},
"autoload": {
"files": [
Expand All @@ -23,6 +24,11 @@
"src/"
]
},
"autoload-dev": {
"files": [
"tests/includes/t51-test-case.php"
]
},
"scripts": {
"coding-standards:check": [
"@php phpcs --standard=.phpcs.xml -s -v"
Expand Down
Loading