-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.4 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
{
"name": "pilot114/snidget",
"description": "snidget framework",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"psr/log": "*",
"psr/simple-cache": "^3.0",
"psr/container": "^2.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"ext-xdebug": "*",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15",
"phploc/phploc": "^7.0",
"phpunit/phpunit": "^9.6",
"league/commonmark": "^2.4"
},
"scripts": {
"hook-install" : "git config core.hooksPath /app/utils/git-hooks",
"tests" : "XDEBUG_MODE=coverage phpunit /app/utils/tests --coverage-html /app/utils/tests/coverage --coverage-filter src --order-by random -v --bootstrap /app/utils/tests/bootstrap.php",
"phploc" : "phploc src | grep 'LOC'",
"phpstan" : "phpstan analyse -c /app/utils/phpstan.neon",
"rector-lint" : "rector process --dry-run --config /app/utils/rector.php",
"rector-fix" : "rector process --config /app/utils/rector.php"
},
"autoload": {
"psr-4": {
"Snidget\\": "src",
"App\\": "App"
},
"files": ["src/functions.php"]
}
}