-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 1.03 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
{
"name": "owenvoke/skeleton-php",
"type": "library",
"description": ":package_description",
"license": "MIT",
"require": {
"php": "^8.2"
},
"require-dev": {
"laravel/pint": "^1.15",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"OwenVoke\\Skeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OwenVoke\\Skeleton\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "pint --ansi",
"test:lint": "pint --test --ansi",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}