-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
78 lines (77 loc) · 2.15 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
{
"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": "[email protected]",
"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": "[email protected]"
}
],
"require": {
"php": "^8.1",
"twig/twig": "^3.8"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Shapecode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@crc",
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "./vendor/bin/phpstan analyse ./src",
"crc": "./vendor/bin/composer-require-checker --config-file=./composer-require-checker.json",
"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
}
}
}