-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.09 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
{
"require": {
"php": "^8.2",
"brandlabs/productiveio": "^0.1.1",
"illuminate/collections": "^10.47",
"symfony/cache": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Alfred\\Productive\\": "./src"
},
"files": [
"./src/Functions/Resources/fetch.php",
"./src/Functions/Resources/formatter.php",
"./src/Functions/Resources/utils.php",
"./src/Functions/actions.php",
"./src/Functions/cache.php",
"./src/Functions/cli.php",
"./src/Functions/client.php",
"./src/Functions/env.php",
"./src/Functions/format.php",
"./src/Functions/main.php",
"./src/Functions/utils.php"
]
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"lint": [
"@lint:style",
"@lint:static"
],
"lint:style": "phpcs",
"lint:static": "phpstan analyze",
"fix": [
"@fix:style"
],
"fix:style": "phpcbf"
}
}