-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.17 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
{
"name": "larapkg/testing",
"description": "Testing and code standards module",
"type": "library",
"autoload": {
"psr-4": {
"LaraPKG\\Testing\\": "src/"
}
},
"license": "proprietary",
"authors": [
{
"name": "Paul Dawson",
"email": "[email protected]"
},
{
"name": "Ron Appleton",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"laravel/framework": "^8.49",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.8",
"psalm/plugin-laravel": "^1.5",
"nunomaduro/larastan": "^0.7.12",
"phpstan/phpstan": "^0.12.99",
"webimpress/coding-standard": "^1.2",
"phpmd/phpmd": "^2.10",
"phploc/phploc": "^7.0"
},
"require-dev": {
"orchestra/testbench": "^6.18",
"facade/ignition": "^2.10",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"testing": "./testing"
},
"bin": ["testing"]
}