Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit b1677dc

Browse files
committed
add test files to out folder too
1 parent fac0832 commit b1677dc

File tree

13 files changed

+3143
-0
lines changed

13 files changed

+3143
-0
lines changed

out/test/project-stub/.php_cs.dist

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->exclude('storage')
5+
->exclude('bootstrap')
6+
->exclude('tests/Feature/__snapshots__')
7+
->in(__DIR__);
8+
9+
return PhpCsFixer\Config::create()
10+
->setRules([
11+
'@PSR2' => true,
12+
'method_argument_space' => ['on_multiline' => 'ignore'],
13+
'ordered_imports' => [
14+
'sortAlgorithm' => 'alpha',
15+
],
16+
'braces' => [
17+
'allow_single_line_closure' => true,
18+
],
19+
'trailing_comma_in_multiline_array' => true,
20+
'single_quote' => false,
21+
'space_after_semicolon' => true,
22+
'single_blank_line_before_namespace' => true,
23+
'no_unused_imports' => true,
24+
'no_useless_else' => true,
25+
// This is for phpunit functions with no visibility (attr: Adam Wathan)
26+
'visibility_required' => false,
27+
])
28+
->setFinder($finder);
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"better-phpunit.commandSuffix": null,
3+
"better-phpunit.phpunitBinary": null,
4+
"better-phpunit.ssh.enable": false,
5+
"better-phpunit.xmlConfigFilepath": null,
6+
"better-phpunit.suiteSuffix": null,
7+
"better-phpunit.docker.enable": false,
8+
"better-phpunit.ssh.disableAllOptions": false,
9+
"better-phpunit.ssh.user": "auser",
10+
"better-phpunit.ssh.host": "ahost",
11+
"better-phpunit.ssh.port": "2222",
12+
"better-phpunit.docker.command": null,
13+
"better-phpunit.docker.paths": null,
14+
"better-phpunit.ssh.paths": {},
15+
"better-phpunit.ssh.binary": null,
16+
"better-phpunit.codelens": true,
17+
"yet-phpunit.commandSuffix": null,
18+
"yet-phpunit.phpunitBinary": null,
19+
"yet-phpunit.ssh.enable": false,
20+
"yet-phpunit.xmlConfigFilepath": null,
21+
"yet-phpunit.docker.enable": false,
22+
"yet-phpunit.codelens": true,
23+
"yet-phpunit.ssh.user": "auser",
24+
"yet-phpunit.ssh.host": "ahost",
25+
"yet-phpunit.ssh.port": "2222",
26+
"yet-phpunit.docker.command": null,
27+
"yet-phpunit.docker.paths": null,
28+
"yet-phpunit.ssh.paths": {},
29+
"yet-phpunit.ssh.binary": null
30+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "calebporzio/project-stub",
3+
"description": "Test environment for Better PHPUnit VS Code extension",
4+
"authors": [
5+
{
6+
"name": "Caleb Porzio",
7+
"email": "[email protected]"
8+
}
9+
],
10+
"require": {
11+
"phpunit/phpunit": "^6.4"
12+
}
13+
}

0 commit comments

Comments
 (0)