|
1 | 1 | { |
2 | | - "name": "codelytv/php-bootstrap", |
3 | | - "description": "Starting point if you want to bootstrap a project in PHP following best practices.", |
4 | | - "type": "project", |
5 | | - "keywords": [ |
6 | | - "bootstrap", |
7 | | - "skeleton", |
8 | | - "kata", |
9 | | - "TDD", |
10 | | - "boilerplate" |
11 | | - ], |
12 | | - "homepage": "https://codely.tv", |
13 | | - "license": "MIT", |
14 | | - "authors": [ |
15 | | - { |
16 | | - "name": "Javier Ferrer", |
17 | | - "homepage": "https://codely.tv", |
18 | | - "role": "Developer" |
19 | | - }, |
20 | | - { |
21 | | - "name": "Rafa Gómez", |
22 | | - "homepage": "https://codely.tv", |
23 | | - "role": "Developer" |
24 | | - } |
25 | | - ], |
26 | | - "require": { |
27 | | - "php": ">=7.2" |
28 | | - }, |
29 | | - "require-dev": { |
30 | | - "jakub-onderka/php-parallel-lint": "^1.0", |
31 | | - "jakub-onderka/php-console-highlighter": "^0.4", |
32 | | - "squizlabs/php_codesniffer": "^3.5", |
33 | | - "phpunit/phpunit": "^7.2", |
34 | | - "symfony/var-dumper": "^4.4" |
35 | | - }, |
36 | | - "autoload": { |
37 | | - "psr-4": { |
38 | | - "CodelyTv\\PhpBootstrap\\": "src/" |
39 | | - } |
40 | | - }, |
41 | | - "autoload-dev": { |
42 | | - "psr-4": { |
43 | | - "CodelyTv\\PhpBootstrapTest\\": "tests/" |
44 | | - } |
45 | | - }, |
46 | | - "minimum-stability": "stable", |
47 | | - "config": { |
48 | | - "optimize-autoloader": true |
49 | | - }, |
50 | | - "prefer-stable": true, |
51 | | - "scripts": { |
52 | | - "lint": "parallel-lint . --exclude vendor", |
53 | | - "style": "phpcs -p --standard=PSR2 src tests", |
54 | | - "fix-style": "phpcbf -p --standard=PSR2 src tests", |
55 | | - "phpunit": "phpunit --configuration phpunit.xml", |
56 | | - "test": [ |
57 | | - "parallel-lint . --exclude vendor", |
58 | | - "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests", |
59 | | - "phpunit --configuration phpunit.xml" |
60 | | - ] |
| 2 | + "name": "codelytv/php-bootstrap", |
| 3 | + "description": "Starting point if you want to bootstrap a project in PHP following best practices.", |
| 4 | + "type": "project", |
| 5 | + "keywords": ["bootstrap", "skeleton", "kata", "TDD", "boilerplate"], |
| 6 | + "homepage": "https://codely.tv", |
| 7 | + "license": "MIT", |
| 8 | + "authors": [ |
| 9 | + { |
| 10 | + "name": "CodelyTV", |
| 11 | + "homepage": "https://codely.tv" |
61 | 12 | } |
| 13 | + ], |
| 14 | + "require": { |
| 15 | + "php": ">=7.4" |
| 16 | + }, |
| 17 | + "require-dev": { |
| 18 | + "squizlabs/php_codesniffer": "^3.5", |
| 19 | + "phpunit/phpunit": "^9.4" |
| 20 | + }, |
| 21 | + "autoload": { |
| 22 | + "psr-4": { |
| 23 | + "CodelyTv\\": "src/" |
| 24 | + } |
| 25 | + }, |
| 26 | + "autoload-dev": { |
| 27 | + "psr-4": { |
| 28 | + "CodelyTv\\Tests\\": "tests/" |
| 29 | + } |
| 30 | + }, |
| 31 | + "minimum-stability": "stable", |
| 32 | + "config": { |
| 33 | + "optimize-autoloader": true |
| 34 | + }, |
| 35 | + "prefer-stable": true, |
| 36 | + "scripts": { |
| 37 | + "style": "phpcs -p --standard=PSR2 src tests", |
| 38 | + "fix-style": "phpcbf -p --standard=PSR2 src tests", |
| 39 | + "phpunit": "phpunit --configuration phpunit.xml", |
| 40 | + "test": [ |
| 41 | + "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests", |
| 42 | + "phpunit --configuration phpunit.xml" |
| 43 | + ] |
| 44 | + } |
62 | 45 | } |
0 commit comments