Skip to content

Commit 13f7e49

Browse files
committed
feat: port over major UIKit upgrades from pattern-lab/patternlab-node#1078
0 parents  commit 13f7e49

33 files changed

+5821
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/vendor/
2+
3+
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
4+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
5+
# composer.lock

CHANGELOG.md

+465
Large diffs are not rendered by default.

composer.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "bolt-design-system/core-php",
3+
"description": "Core PHP functionality for the Bolt Design System",
4+
"version": "2.9.1",
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Salem Ghoweri",
10+
"role": "Maintainer"
11+
},
12+
{
13+
"name": "Evan Lovely"
14+
}
15+
],
16+
"autoload": {
17+
"psr-4": {
18+
"Bolt\\": "src/"
19+
}
20+
},
21+
"require": {
22+
"fzaninotto/faker": "^1.8.0",
23+
"basaltinc/twig-tools": "^1.4.0",
24+
"michelf/php-markdown": "^1.8.0",
25+
"webmozart/path-util": "^2.3",
26+
"shudrum/array-finder": "^1.1",
27+
"gregwar/image": "^2.0",
28+
"tooleks/php-avg-color-picker": "^1.1.2",
29+
"asm89/twig-lint": "^1.0",
30+
"nabil1337/case-helper": "^0.1.0",
31+
"mexitek/phpcolors": "^0.4.0"
32+
},
33+
"require-dev": {
34+
"phpunit/phpunit": "^7"
35+
},
36+
"suggest": {
37+
"bolt-design-system/drupal-twig-extensions": "*"
38+
},
39+
"scripts": {
40+
"setup": "@composer install --no-interaction --prefer-dist --no-progress",
41+
"test": [
42+
"@composer install --no-interaction --prefer-dist --no-progress",
43+
"vendor/bin/phpunit --colors=always tests"
44+
]
45+
}
46+
}

0 commit comments

Comments
 (0)