-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.38 KB
/
composer.json
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
46
47
48
49
50
{
"name": "brightnucleus/view",
"description": "Reusable View component, that can provide different implementations.",
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"malukenho/docheader": "^1",
"yoast/phpunit-polyfills": "^3",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5 || ^10",
"squizlabs/php_codesniffer": "^3",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"license": "MIT",
"authors": [
{
"name": "Alain Schlesser",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"brightnucleus/exceptions": ">=0.4",
"brightnucleus/config": ">=0.5",
"doctrine/collections": ">=1.3",
"symfony/finder": ">=3.1"
},
"autoload": {
"psr-4": {
"BrightNucleus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrightNucleus\\View\\Tests\\Fixtures\\": "tests/fixtures/classes/",
"BrightNucleus\\View\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "vendor/bin/coveralls -v --coverage_clover clover.xml",
"cs-check": "vendor/bin/phpcs -ps --colors",
"cs-fix": "vendor/bin/phpcbf -ps --colors",
"test": "vendor/bin/phpunit --colors",
"test-coverage": "vendor/bin/phpunit --colors --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader --ansi check src/"
}
}