-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.32 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.32 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
46
47
48
49
50
{
"name": "theperfectwill/php-lib-simple-regex",
"description": "A lightweight PHP library that makes regular expressions more approachable.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ThePerfectWill",
"email": "faith@theperfectwill.busienss"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"ThePerfectWill\\PhpLib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ThePerfectWill\\PhpLib\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR12 src tests",
"fix-style": "phpcbf -p --standard=PSR12 src tests",
"analyse": "phpstan analyse --level=max src",
"check-all": [
"@check-style",
"@analyse",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}