-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
85 lines (85 loc) · 2.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "esi/simple_counter",
"description": "A simple web hit counter.",
"license": "MIT",
"type": "library",
"keywords": [
"counter",
"flat-file",
"visitor-counter",
"file-based",
"hit-counter"
],
"authors": [
{
"name": "Eric Sizemore",
"email": "admin@secondversion.com",
"homepage": "https://www.secondversion.com/",
"role": "Lead Developer"
}
],
"support": {
"issues": "https://github.com/ericsizemore/simple_counter/issues",
"forum": "https://github.com/ericsizemore/simple_counter/discussions",
"source": "https://github.com/ericsizemore/simple_counter/tree/master",
"security": "https://github.com/ericsizemore/simple_counter/security/policy"
},
"require": {
"php": "^8.2 <8.5",
"ext-json": "*",
"esi/utility": "^2.1",
"symfony/options-resolver": "^7.1"
},
"require-dev": {
"esi/phpunit-coverage-check": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.4",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Esi\\SimpleCounter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Esi\\SimpleCounter\\Tests\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-5.0.x-dev": "5.x-dev",
"dev-master": "6.x-dev"
}
},
"scripts": {
"coverage": "vendor/bin/coverage-check build/logs/clover.xml 100",
"cs:check": "vendor/bin/php-cs-fixer check --verbose --diff",
"cs:check:php84": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"vendor/bin/php-cs-fixer check --verbose --diff"
],
"cs:fix": "vendor/bin/php-cs-fixer fix",
"cs:fix:php84": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"vendor/bin/php-cs-fixer fix"
],
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"psalm": "vendor/bin/psalm --no-diff",
"psalm:stats": "vendor/bin/psalm --no-diff --stats",
"test": "phpunit"
}
}