-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.13 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
{
"name": "wplake/typed",
"description": "Lightweight PHP utility for seamless type-casting and data retrieval from dynamic variables, arrays, and objects.",
"homepage": "https://github.com/WPLake/typed",
"keywords": [
"type",
"cast"
],
"license": "Apache-2.0",
"authors": [
{
"name": "WPLake",
"homepage": "https://github.com/WPLake/"
}
],
"require": {
"php": "^7.4|^8.0"
},
"autoload": {
"psr-4": {
"WPLake\\Typed\\": "./src"
},
"files": [
"./src/functions.php"
]
},
"require-dev": {
"pestphp/pest": "^3.7",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"squizlabs/php_codesniffer": "^3.11",
"slevomat/coding-standard": "^8.15"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"pest": "./vendor/bin/pest",
"phpstan": "php ./vendor/bin/phpstan analys -c ./phpstan.neon",
"phpcs": "php ./vendor/bin/phpcs --standard=phpcs.xml ./src",
"phpcbf": "php ./vendor/bin/phpcbf --standard=phpcs.xml ./src"
}
}