-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "samlitowitz/php-memory",
"description": "A library to interact with PHP memory limit",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Sam Litowitz",
"email": "samlitowitz@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PhpMemory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpMemory\\": ["src/", "tests/PhpMemory"]
}
},
"scripts": {
"check": [
"@analyze",
"@cs-check",
"@unit-tests"
],
"analyze": "phpstan --ansi analyse -vvv",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"unit-tests": "phpunit --colors=always"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"require": {
"phpstan/phpstan": "^2.2",
"squizlabs/php_codesniffer": "^4.0",
"samlitowitz/phpstan-opinionated-nomenclature": "^3.0"
}
}