Skip to content

Commit d67951d

Browse files
committed
Initial Skeleton Setup
Rolls out the standard needs for the project, phpstan, tests and code style.
0 parents  commit d67951d

File tree

7 files changed

+3004
-0
lines changed

7 files changed

+3004
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
composer.phar
2+
/vendor/
3+
.phpcs.cache
4+
.phpunit.result.cache

README.md

Whitespace-only changes.

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "dms/phpunit-arraysubset-asserts",
3+
"description": "This package provides Array Subset and related asserts once depracated in PHPunit 8",
4+
"type": "library",
5+
"require": {
6+
"phpunit/phpunit": "^8.0",
7+
"php": "^7.2"
8+
},
9+
"license": "MIT",
10+
"authors": [
11+
{
12+
"name": "Rafael Dohms",
13+
"email": "rdohms@gmail.com"
14+
}
15+
],
16+
"require-dev": {
17+
"dms/coding-standard": "^1.0",
18+
"phpstan/phpstan": "^0.11.2",
19+
"phpstan/phpstan-strict-rules": "^0.11.0",
20+
"phpstan/phpstan-phpunit": "^0.11.0",
21+
"squizlabs/php_codesniffer": "^3.4"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"DMS\\PHPUnitExtensions\\ArraySubset\\": "src"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"DMS\\PHPUnitExtensions\\ArraySubset\\Tests\\": "tests"
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)