-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.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
{
"name": "nystudio107/twig-bundle-installer",
"description": "Install, update, and manage Twig template bundles via Composer",
"version": "1.1.2",
"keywords": [
"twig",
"composer",
"installer",
"bundle",
"craftcms",
"drupal",
"symphony"
],
"homepage": "https://nystudio107.com",
"type": "composer-plugin",
"support": {
"email": "[email protected]",
"issues": "https://github.com/nystudio107/twig-bundle-installer/issues",
"source": "https://github.com/nystudio107/twig-bundle-installer",
"docs": "https://github.com/nystudio107/twig-bundle-installer"
},
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=5.4",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"craftcms/ecs": "dev-main",
"phpstan/phpstan": "^1.4.6"
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"autoload": {
"psr-4": {
"nystudio107\\composer\\": "src/"
}
},
"extra": {
"class": "nystudio107\\composer\\Plugin"
}
}