-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 989 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 989 Bytes
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
{
"name": "fandom/interview-coding-task",
"description": "An interview task for Fandom",
"type": "project",
"keywords": ["coding-task"],
"homepage": "https://fandom.com/careers",
"license": "Apache-2.0",
"require": {
"php": "^7.4||^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Fandom\\Interview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fandom\\Interview\\": "test/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"scripts": {
"style": "phpcs -p --standard=PSR2 src test",
"fix-style": "phpcbf -p --standard=PSR2 src test",
"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 test",
"phpunit --configuration phpunit.xml"
]
}
}