Init Repository
This commit is contained in:
commit
31009d24c6
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.idea/
|
||||||
|
composer.phar
|
||||||
|
vendor/
|
||||||
|
composer.lock
|
||||||
|
|
13
composer.json
Normal file
13
composer.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"name": "q792602257/jerry_dsl",
|
||||||
|
"description": "My DSL Thing",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "q792602257",
|
||||||
|
"email": "jerryyan0912@qq.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
}
|
||||||
|
}
|
16
phpunit.xml.dist
Normal file
16
phpunit.xml.dist
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<phpunit backupGlobals="false"
|
||||||
|
convertErrorsToExceptions="true"
|
||||||
|
convertWarningsToExceptions="true"
|
||||||
|
convertNoticesToExceptions="true"
|
||||||
|
mapTestClassNameToCoveredClassName="true"
|
||||||
|
bootstrap="vendor/autoload.php"
|
||||||
|
verbose="true"
|
||||||
|
colors="true">
|
||||||
|
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="DSL">
|
||||||
|
<directory>./tests</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
</phpunit>
|
Loading…
x
Reference in New Issue
Block a user