forked from phptal/PHPTAL
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
95 lines (95 loc) · 2.71 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
86
87
88
89
90
91
92
93
94
95
{
"name": "scn/phptal",
"homepage": "https://github.com/SC-Networks/PHPTAL/",
"description": "PHPTAL is a templating engine for PHP that implements Zope Page Templates syntax",
"license": "LGPL-2.1+",
"type": "library",
"keywords": [
"zope",
"template engine",
"phptal"
],
"authors": [
{
"name": "Daniel Jakob",
"homepage": "https://www.sc-networks.com"
},
{
"name": "Marcus Schwarz",
"homepage": "https://www.sc-networks.com"
},
{
"name": "Laurent Bédubourg",
"email": "[email protected]",
"homepage": "http://labe.me"
},
{
"name": "Kornel Lesiński",
"email": "[email protected]",
"homepage": "http://pornel.net/"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-gettext": "*",
"ext-simplexml": "*",
"symfony/polyfill-mbstring": "^1.12",
"symfony/polyfill-php82": "^1.26"
},
"require-dev": {
"ext-mbstring": "*",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^10",
"rector/rector": "^1"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"PhpTal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.1"
},
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"tests": "phpunit -c phpunit.xml",
"stan": "phpstan",
"check-cs": "php-cs-fixer fix --dry-run --diff",
"fix-cs": "php-cs-fixer fix",
"rector:dry": "rector process -n",
"rector:fix": "rector process",
"qa": [
"@composer check-cs",
"@composer stan",
"@composer tests"
]
},
"scripts-descriptions": {
"tests": "Run the projects unittest",
"stan": "Run phpstan check",
"check-cs": "Run codestyle checker",
"fix-cs": "Correct codestyle errors",
"qa": "Auto-run quality assurance tools",
"rector:dry": "Dry run rector code migrations",
"rectory:fix": "Execute rector code migrations"
},
"suggest": {
"scn/phptal-lint": "Linter for phptal template files",
"ext-gettext": "Php gettext extension for i18n support",
"ext-mbstring": "Multibyte support is important for any non-english strings",
"usox/tal-i18n-extract": "Extracts translation-keys from phptal templates"
}
}