-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.16 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
{
"name": "bolt-design-system/core-php",
"description": "Core PHP functionality for the Bolt Design System",
"version": "5.9.1",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Salem Ghoweri",
"role": "Maintainer"
},
{
"name": "Evan Lovely"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/boltdesignsystem/twig-tools",
"no-api": true
}
],
"autoload": {
"psr-4": {
"Bolt\\": "src/"
}
},
"require": {
"basaltinc/twig-tools": "dev-master as 1.4.3",
"michelf/php-markdown": "^1.8.0",
"webmozart/path-util": "^2.3",
"shudrum/array-finder": "^1.1",
"gregwar/image": "^2.0",
"nabil1337/case-helper": "^0.1.0",
"mexitek/phpcolors": "^0.4.0",
"twig/twig": "^2.14.11"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"suggest": {
"bolt-design-system/drupal-twig-extensions": "*"
},
"scripts": {
"setup": "@composer install --no-interaction --prefer-dist --no-progress",
"test": [
"@composer install --no-interaction --prefer-dist --no-progress",
"vendor/bin/phpunit --colors=always tests"
]
}
}