-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.25 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
{
"name": "esi/simple_tpl",
"description": "Simple TPL - A Simple Template Engine",
"license": "MIT",
"type": "library",
"keywords": [
"template",
"template-engine",
"text",
"text-replacement"
],
"authors": [
{
"name": "Eric Sizemore",
"email": "admin@secondversion.com",
"homepage": "https://www.secondversion.com/"
}
],
"support": {
"issues": "https://github.com/ericsizemore/simple_tpl/issues",
"forum": "https://github.com/ericsizemore/simple_tpl/discussions",
"source": "https://github.com/ericsizemore/simple_tpl/tree/master",
"security": "https://github.com/ericsizemore/simple_tpl/security/policy"
},
"require": {
"php": "^8.2 <8.5",
"symfony/cache": "^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",
"phpstan/phpstan-symfony": "^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\\SimpleTpl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Esi\\SimpleTpl\\Tests\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev",
"dev-master": "3.0-dev"
}
},
"scripts": {
"coverage-check": "vendor/bin/coverage-check build/logs/clover.xml 100 -F",
"cs:check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"psalm": "vendor/bin/psalm -c psalm.xml --no-diff --stats",
"test": "phpunit"
}
}