-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.12 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 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
{
"name": "sebkay/noticeable",
"version" : "2.2.0",
"authors": [
{
"name": "Seb Kay",
"email": "seb@sebkay.com",
"homepage": "https://sebkay.com"
}
],
"autoload": {
"psr-4": {
"Noticeable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"require" : {
"php" : ">=7.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.2",
"phpunit/phpunit": "^9.4"
},
"scripts" : {
"refresh" : "git clean -xffd && composer install --ansi",
"phpcs" : "./vendor/bin/phpcs --standard=PSR12 src",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR12 src",
"psalm": "./vendor/bin/psalm --show-info=true",
"phpunit": "./vendor/bin/phpunit --colors=always tests --process-isolation",
"phpunit:testdox": "@phpunit --testdox",
"phpunit:coverage": "@phpunit --coverage-html coverage",
"test" : "composer phpcs && composer psalm && composer phpunit"
}
}