-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update skeleton to latest technologies
- Loading branch information
1 parent
14e8f95
commit a0342ad
Showing
5 changed files
with
861 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
vendor/ | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} |
Oops, something went wrong.