Skip to content

Commit 77a8794

Browse files
author
Noah Smith
committed
Initial commit
1 parent 3c80f17 commit 77a8794

File tree

4 files changed

+1786
-0
lines changed

4 files changed

+1786
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
vendor/

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name" : "amtgard/phpunit-extensions",
3+
"type" : "library",
4+
"homepage": "https://github.com/amtgard/phpunit-extensions",
5+
"license" : "MIT",
6+
"description": "PHPUnit Extensions",
7+
"require": {
8+
"php": ">=8.1"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"Amtgard\\PHPUnit\\": "./src"
13+
}
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"Tests\\": "tests/"
18+
}
19+
},
20+
"require-dev": {
21+
"phpunit/phpunit": "^11.2"
22+
}
23+
}

0 commit comments

Comments
 (0)