forked from CodelyTV/php-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.12 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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": "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"
]
}
}