forked from larastan/larastan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "larastan/larastan",
"type": "phpstan-extension",
"description": "Larastan - Discover bugs in your code without running it. A phpstan/phpstan wrapper for Laravel",
"keywords": ["laravel", "larastan", "phpstan", "php", "package", "static analysis", "code analysis", "code analyse"],
"license": "MIT",
"authors": [
{
"name": "Can Vural",
"email": "[email protected]"
},
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/console": "^11.15.0",
"illuminate/container": "^11.15.0",
"illuminate/contracts": "^11.15.0",
"illuminate/database": "^11.15.0",
"illuminate/http": "^11.15.0",
"illuminate/pipeline": "^11.15.0",
"illuminate/support": "^11.15.0",
"phpmyadmin/sql-parser": "^5.9.0",
"phpstan/phpstan": "^2.0.3"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"nikic/php-parser": "^5.3",
"laravel/framework": "^11.15.0",
"mockery/mockery": "^1.6",
"orchestra/canvas": "^v9.1.3",
"orchestra/testbench-core": "^9.5.2",
"phpstan/phpstan-deprecation-rules": "^2.0.0",
"phpunit/phpunit": "^10.5.16"
},
"suggest": {
"orchestra/testbench": "Using Larastan for analysing a package needs Testbench"
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/application/app/",
"Database\\Factories\\": "tests/application/database/factories/",
"Database\\Migrations\\": "tests/application/database/migrations/"
},
"classmap": [
"tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Larastan\\Larastan\\": "src/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"test:cs": "phpcs",
"test:types": "phpstan analyse --ansi --memory-limit 256M",
"test:unit": "phpunit --colors=always -d memory_limit=1408M",
"test": [
"@test:types",
"@test:unit"
]
}
}