-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (74 loc) · 1.98 KB
/
composer.json
File metadata and controls
75 lines (74 loc) · 1.98 KB
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
{
"name": "shapecode/twig-string-loader",
"description": "A string loader for twig",
"keywords": [
"shapecode",
"twig",
"template",
"string",
"loader"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/shapecode/twig-string-loader",
"support": {
"email": "support@shapecode.de",
"issues": "https://github.com/shapecode/twig-string-loader/issues",
"source": "https://github.com/shapecode/twig-string-loader/releases",
"wiki": "https://github.com/shapecode/twig-string-loader/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "dev@loges.one"
}
],
"require": {
"php": "^8.4",
"twig/twig": "^3.22"
},
"require-dev": {
"doctrine/coding-standard": "^14.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"Shapecode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "./vendor/bin/phpstan analyse ./src",
"phpunit": "./vendor/bin/phpunit --colors=always",
"cs-fix": "./vendor/bin/phpcbf",
"cs-check": "./vendor/bin/phpcs -s"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}