-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 928 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 928 Bytes
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
{
"name": "paragraf/php-kit",
"description": "The PHP Kit is a set of simple classes and helpers to make life easier.",
"type": "library",
"require-dev": {
"psy/psysh": "^0.11.10",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "MIT",
"autoload": {
"files": [
"functions.php"
],
"psr-4": {
"Paragraf\\Kit\\": "src/"
}
},
"authors": [
{
"name": "Salim Romadhon",
"email": "salimromadhon@pm.me"
}
],
"scripts": {
"cs": "./vendor/bin/phpcs",
"stan": "./vendor/bin/phpstan analyse --memory-limit=-1",
"test": "./vendor/bin/phpunit --do-not-cache-result",
"tink": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/psysh"
]
}
}