-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 812 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 812 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
36
{
"name": "lawondyss/config",
"description": "Base class for creating own class of configuration. Better than a associative array :-)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ladislav Vondráček",
"email": "lad.von@gmail.com"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"nette/tester": "^2.5",
"tracy/tracy": "^2.10",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.14"
},
"autoload": {
"psr-4": {
"Lawondyss\\Config\\": "src/Config"
}
},
"scripts": {
"tests": "tester tests/",
"phpcs": "phpcs --no-cache -sp src/Config",
"phpcbf": "phpcbf src/Config"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}