Skip to content

Commit

Permalink
Init dev tools
Browse files Browse the repository at this point in the history
  • Loading branch information
b-viguier committed Nov 1, 2018
1 parent 8385f04 commit ea9fe04
Show file tree
Hide file tree
Showing 4 changed files with 3,335 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor/
/.php_cs.cache
22 changes: 21 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,31 @@
"name": "bviguier/inphpinity",
"description": "An experience about gaming and Php",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Benoit Viguier",
"email": "[email protected]"
}
],
"require": {}
"autoload": {
"psr-4": {
"bviguier\\Inphpinity\\": "src/"
}
},
"require": {
"php": "^7.1",
"ext-SDL": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"phpstan/phpstan": "^0.10.5",
"m6web/php-cs-fixer-config": "^1.0"
},
"scripts": {
"test": "./vendor/bin/phpunit --testsuite='Unit Testing'",
"analyse": "./vendor/bin/phpstan analyse src tests --level=max --no-progress -vvv",
"cs-check": "./vendor/bin/php-cs-fixer fix ./ --dry-run --verbose",
"cs-fix": "./vendor/bin/php-cs-fixer fix ./"
}
}
Loading

0 comments on commit ea9fe04

Please sign in to comment.