Skip to content

Commit

Permalink
Update skeleton to latest technologies
Browse files Browse the repository at this point in the history
  • Loading branch information
rgomezcasas committed Oct 15, 2020
1 parent 14e8f95 commit a0342ad
Show file tree
Hide file tree
Showing 5 changed files with 861 additions and 721 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
vendor/
.phpunit.result.cache
101 changes: 42 additions & 59 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,45 @@
{
"name": "codelytv/php-bootstrap",
"description": "Starting point if you want to bootstrap a project in PHP following best practices.",
"type": "project",
"keywords": [
"bootstrap",
"skeleton",
"kata",
"TDD",
"boilerplate"
],
"homepage": "https://codely.tv",
"license": "MIT",
"authors": [
{
"name": "Javier Ferrer",
"homepage": "https://codely.tv",
"role": "Developer"
},
{
"name": "Rafa Gómez",
"homepage": "https://codely.tv",
"role": "Developer"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^7.2",
"symfony/var-dumper": "^4.4"
},
"autoload": {
"psr-4": {
"CodelyTv\\PhpBootstrap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodelyTv\\PhpBootstrapTest\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"scripts": {
"lint": "parallel-lint . --exclude vendor",
"style": "phpcs -p --standard=PSR2 src tests",
"fix-style": "phpcbf -p --standard=PSR2 src tests",
"phpunit": "phpunit --configuration phpunit.xml",
"test": [
"parallel-lint . --exclude vendor",
"phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpunit --configuration phpunit.xml"
]
"name": "codelytv/php-bootstrap",
"description": "Starting point if you want to bootstrap a project in PHP following best practices.",
"type": "project",
"keywords": ["bootstrap", "skeleton", "kata", "TDD", "boilerplate"],
"homepage": "https://codely.tv",
"license": "MIT",
"authors": [
{
"name": "CodelyTV",
"homepage": "https://codely.tv"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"CodelyTv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodelyTv\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"scripts": {
"style": "phpcs -p --standard=PSR2 src tests",
"fix-style": "phpcbf -p --standard=PSR2 src tests",
"phpunit": "phpunit --configuration phpunit.xml",
"test": [
"phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpunit --configuration phpunit.xml"
]
}
}
Loading

0 comments on commit a0342ad

Please sign in to comment.