5 |
--------------------------------------------------------------------------------
/js/other-script.js:
--------------------------------------------------------------------------------
1 | /* global Drupal */
2 | (function ($, Drupal) {
3 | 'use strict';
4 |
5 | // A demo Drupal behavior
6 | Drupal.behaviors.otherCustomBehavior = {
7 | attach: function (context, settings) {
8 | // $('body', context).prepend('Demo drupal behavior in js/other-script.js');
9 | // console.log('Drupal behavior from js/script.js');
10 | }
11 | };
12 |
13 | })(jQuery, Drupal);
14 |
15 |
--------------------------------------------------------------------------------
/js/script.js:
--------------------------------------------------------------------------------
1 | /* global Drupal */
2 | (function ($, Drupal) {
3 | 'use strict';
4 |
5 | // A demo Drupal behavior
6 | Drupal.behaviors.customBehavior = {
7 | attach: function (context, settings) {
8 | // $('body', context).prepend('Demo drupal behavior in js/script.js');
9 | // console.log('Drupal behavior from js/script.js');
10 | }
11 | };
12 |
13 | })(jQuery, Drupal);
14 |
15 |
--------------------------------------------------------------------------------
/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "patternlab",
3 | "version": "1.0.0",
4 | "description": "A Drupal theme whose Twig templates are integrated with Pattern Lab.",
5 | "main": "gulpfile.js",
6 | "scripts": {
7 | "start": "gulp clean && gulp compile && gulp",
8 | "compile": "gulp clean && gulp compile",
9 | "test": "gulp validate",
10 | "postinstall": "find node_modules/ -name \"*.info\" -type f -delete && bower install --allow-root"
11 | },
12 | "dependencies": {},
13 | "devDependencies": {
14 | "babel-preset-es2015": "^6.6.0",
15 | "bourbon": "^4.2.7",
16 | "bower": "^1.7.9",
17 | "breakpoint-sass": "^2.7.0",
18 | "gulp": "^3.9.1",
19 | "gulp-help": "^1.6.1",
20 | "js-yaml": "^3.6.0",
21 | "lodash.merge": "^4.3.5",
22 | "normalize.scss": "^0.1.0",
23 | "p2-theme-core": "^7.0.1",
24 | "semver": "^5.1.0",
25 | "singularitygs": "^1.7.0"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/pattern-lab/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .idea
3 | export/*
4 | packages/*
5 | public/*
6 | vendor/*
7 | source/styleguide/*
--------------------------------------------------------------------------------
/pattern-lab/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 2, June 1991
3 |
4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6 | Everyone is permitted to copy and distribute verbatim copies
7 | of this license document, but changing it is not allowed.
8 |
9 | Preamble
10 |
11 | The licenses for most software are designed to take away your
12 | freedom to share and change it. By contrast, the GNU General Public
13 | License is intended to guarantee your freedom to share and change free
14 | software--to make sure the software is free for all its users. This
15 | General Public License applies to most of the Free Software
16 | Foundation's software and to any other program whose authors commit to
17 | using it. (Some other Free Software Foundation software is covered by
18 | the GNU Lesser General Public License instead.) You can apply it to
19 | your programs, too.
20 |
21 | When we speak of free software, we are referring to freedom, not
22 | price. Our General Public Licenses are designed to make sure that you
23 | have the freedom to distribute copies of free software (and charge for
24 | this service if you wish), that you receive source code or can get it
25 | if you want it, that you can change the software or use pieces of it
26 | in new free programs; and that you know you can do these things.
27 |
28 | To protect your rights, we need to make restrictions that forbid
29 | anyone to deny you these rights or to ask you to surrender the rights.
30 | These restrictions translate to certain responsibilities for you if you
31 | distribute copies of the software, or if you modify it.
32 |
33 | For example, if you distribute copies of such a program, whether
34 | gratis or for a fee, you must give the recipients all the rights that
35 | you have. You must make sure that they, too, receive or can get the
36 | source code. And you must show them these terms so they know their
37 | rights.
38 |
39 | We protect your rights with two steps: (1) copyright the software, and
40 | (2) offer you this license which gives you legal permission to copy,
41 | distribute and/or modify the software.
42 |
43 | Also, for each author's protection and ours, we want to make certain
44 | that everyone understands that there is no warranty for this free
45 | software. If the software is modified by someone else and passed on, we
46 | want its recipients to know that what they have is not the original, so
47 | that any problems introduced by others will not reflect on the original
48 | authors' reputations.
49 |
50 | Finally, any free program is threatened constantly by software
51 | patents. We wish to avoid the danger that redistributors of a free
52 | program will individually obtain patent licenses, in effect making the
53 | program proprietary. To prevent this, we have made it clear that any
54 | patent must be licensed for everyone's free use or not licensed at all.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | GNU GENERAL PUBLIC LICENSE
60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61 |
62 | 0. This License applies to any program or other work which contains
63 | a notice placed by the copyright holder saying it may be distributed
64 | under the terms of this General Public License. The "Program", below,
65 | refers to any such program or work, and a "work based on the Program"
66 | means either the Program or any derivative work under copyright law:
67 | that is to say, a work containing the Program or a portion of it,
68 | either verbatim or with modifications and/or translated into another
69 | language. (Hereinafter, translation is included without limitation in
70 | the term "modification".) Each licensee is addressed as "you".
71 |
72 | Activities other than copying, distribution and modification are not
73 | covered by this License; they are outside its scope. The act of
74 | running the Program is not restricted, and the output from the Program
75 | is covered only if its contents constitute a work based on the
76 | Program (independent of having been made by running the Program).
77 | Whether that is true depends on what the Program does.
78 |
79 | 1. You may copy and distribute verbatim copies of the Program's
80 | source code as you receive it, in any medium, provided that you
81 | conspicuously and appropriately publish on each copy an appropriate
82 | copyright notice and disclaimer of warranty; keep intact all the
83 | notices that refer to this License and to the absence of any warranty;
84 | and give any other recipients of the Program a copy of this License
85 | along with the Program.
86 |
87 | You may charge a fee for the physical act of transferring a copy, and
88 | you may at your option offer warranty protection in exchange for a fee.
89 |
90 | 2. You may modify your copy or copies of the Program or any portion
91 | of it, thus forming a work based on the Program, and copy and
92 | distribute such modifications or work under the terms of Section 1
93 | above, provided that you also meet all of these conditions:
94 |
95 | a) You must cause the modified files to carry prominent notices
96 | stating that you changed the files and the date of any change.
97 |
98 | b) You must cause any work that you distribute or publish, that in
99 | whole or in part contains or is derived from the Program or any
100 | part thereof, to be licensed as a whole at no charge to all third
101 | parties under the terms of this License.
102 |
103 | c) If the modified program normally reads commands interactively
104 | when run, you must cause it, when started running for such
105 | interactive use in the most ordinary way, to print or display an
106 | announcement including an appropriate copyright notice and a
107 | notice that there is no warranty (or else, saying that you provide
108 | a warranty) and that users may redistribute the program under
109 | these conditions, and telling the user how to view a copy of this
110 | License. (Exception: if the Program itself is interactive but
111 | does not normally print such an announcement, your work based on
112 | the Program is not required to print an announcement.)
113 |
114 | These requirements apply to the modified work as a whole. If
115 | identifiable sections of that work are not derived from the Program,
116 | and can be reasonably considered independent and separate works in
117 | themselves, then this License, and its terms, do not apply to those
118 | sections when you distribute them as separate works. But when you
119 | distribute the same sections as part of a whole which is a work based
120 | on the Program, the distribution of the whole must be on the terms of
121 | this License, whose permissions for other licensees extend to the
122 | entire whole, and thus to each and every part regardless of who wrote it.
123 |
124 | Thus, it is not the intent of this section to claim rights or contest
125 | your rights to work written entirely by you; rather, the intent is to
126 | exercise the right to control the distribution of derivative or
127 | collective works based on the Program.
128 |
129 | In addition, mere aggregation of another work not based on the Program
130 | with the Program (or with a work based on the Program) on a volume of
131 | a storage or distribution medium does not bring the other work under
132 | the scope of this License.
133 |
134 | 3. You may copy and distribute the Program (or a work based on it,
135 | under Section 2) in object code or executable form under the terms of
136 | Sections 1 and 2 above provided that you also do one of the following:
137 |
138 | a) Accompany it with the complete corresponding machine-readable
139 | source code, which must be distributed under the terms of Sections
140 | 1 and 2 above on a medium customarily used for software interchange; or,
141 |
142 | b) Accompany it with a written offer, valid for at least three
143 | years, to give any third party, for a charge no more than your
144 | cost of physically performing source distribution, a complete
145 | machine-readable copy of the corresponding source code, to be
146 | distributed under the terms of Sections 1 and 2 above on a medium
147 | customarily used for software interchange; or,
148 |
149 | c) Accompany it with the information you received as to the offer
150 | to distribute corresponding source code. (This alternative is
151 | allowed only for noncommercial distribution and only if you
152 | received the program in object code or executable form with such
153 | an offer, in accord with Subsection b above.)
154 |
155 | The source code for a work means the preferred form of the work for
156 | making modifications to it. For an executable work, complete source
157 | code means all the source code for all modules it contains, plus any
158 | associated interface definition files, plus the scripts used to
159 | control compilation and installation of the executable. However, as a
160 | special exception, the source code distributed need not include
161 | anything that is normally distributed (in either source or binary
162 | form) with the major components (compiler, kernel, and so on) of the
163 | operating system on which the executable runs, unless that component
164 | itself accompanies the executable.
165 |
166 | If distribution of executable or object code is made by offering
167 | access to copy from a designated place, then offering equivalent
168 | access to copy the source code from the same place counts as
169 | distribution of the source code, even though third parties are not
170 | compelled to copy the source along with the object code.
171 |
172 | 4. You may not copy, modify, sublicense, or distribute the Program
173 | except as expressly provided under this License. Any attempt
174 | otherwise to copy, modify, sublicense or distribute the Program is
175 | void, and will automatically terminate your rights under this License.
176 | However, parties who have received copies, or rights, from you under
177 | this License will not have their licenses terminated so long as such
178 | parties remain in full compliance.
179 |
180 | 5. You are not required to accept this License, since you have not
181 | signed it. However, nothing else grants you permission to modify or
182 | distribute the Program or its derivative works. These actions are
183 | prohibited by law if you do not accept this License. Therefore, by
184 | modifying or distributing the Program (or any work based on the
185 | Program), you indicate your acceptance of this License to do so, and
186 | all its terms and conditions for copying, distributing or modifying
187 | the Program or works based on it.
188 |
189 | 6. Each time you redistribute the Program (or any work based on the
190 | Program), the recipient automatically receives a license from the
191 | original licensor to copy, distribute or modify the Program subject to
192 | these terms and conditions. You may not impose any further
193 | restrictions on the recipients' exercise of the rights granted herein.
194 | You are not responsible for enforcing compliance by third parties to
195 | this License.
196 |
197 | 7. If, as a consequence of a court judgment or allegation of patent
198 | infringement or for any other reason (not limited to patent issues),
199 | conditions are imposed on you (whether by court order, agreement or
200 | otherwise) that contradict the conditions of this License, they do not
201 | excuse you from the conditions of this License. If you cannot
202 | distribute so as to satisfy simultaneously your obligations under this
203 | License and any other pertinent obligations, then as a consequence you
204 | may not distribute the Program at all. For example, if a patent
205 | license would not permit royalty-free redistribution of the Program by
206 | all those who receive copies directly or indirectly through you, then
207 | the only way you could satisfy both it and this License would be to
208 | refrain entirely from distribution of the Program.
209 |
210 | If any portion of this section is held invalid or unenforceable under
211 | any particular circumstance, the balance of the section is intended to
212 | apply and the section as a whole is intended to apply in other
213 | circumstances.
214 |
215 | It is not the purpose of this section to induce you to infringe any
216 | patents or other property right claims or to contest validity of any
217 | such claims; this section has the sole purpose of protecting the
218 | integrity of the free software distribution system, which is
219 | implemented by public license practices. Many people have made
220 | generous contributions to the wide range of software distributed
221 | through that system in reliance on consistent application of that
222 | system; it is up to the author/donor to decide if he or she is willing
223 | to distribute software through any other system and a licensee cannot
224 | impose that choice.
225 |
226 | This section is intended to make thoroughly clear what is believed to
227 | be a consequence of the rest of this License.
228 |
229 | 8. If the distribution and/or use of the Program is restricted in
230 | certain countries either by patents or by copyrighted interfaces, the
231 | original copyright holder who places the Program under this License
232 | may add an explicit geographical distribution limitation excluding
233 | those countries, so that distribution is permitted only in or among
234 | countries not thus excluded. In such case, this License incorporates
235 | the limitation as if written in the body of this License.
236 |
237 | 9. The Free Software Foundation may publish revised and/or new versions
238 | of the General Public License from time to time. Such new versions will
239 | be similar in spirit to the present version, but may differ in detail to
240 | address new problems or concerns.
241 |
242 | Each version is given a distinguishing version number. If the Program
243 | specifies a version number of this License which applies to it and "any
244 | later version", you have the option of following the terms and conditions
245 | either of that version or of any later version published by the Free
246 | Software Foundation. If the Program does not specify a version number of
247 | this License, you may choose any version ever published by the Free Software
248 | Foundation.
249 |
250 | 10. If you wish to incorporate parts of the Program into other free
251 | programs whose distribution conditions are different, write to the author
252 | to ask for permission. For software which is copyrighted by the Free
253 | Software Foundation, write to the Free Software Foundation; we sometimes
254 | make exceptions for this. Our decision will be guided by the two goals
255 | of preserving the free status of all derivatives of our free software and
256 | of promoting the sharing and reuse of software generally.
257 |
258 | NO WARRANTY
259 |
260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268 | REPAIR OR CORRECTION.
269 |
270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278 | POSSIBILITY OF SUCH DAMAGES.
279 |
280 | END OF TERMS AND CONDITIONS
281 |
282 | How to Apply These Terms to Your New Programs
283 |
284 | If you develop a new program, and you want it to be of the greatest
285 | possible use to the public, the best way to achieve this is to make it
286 | free software which everyone can redistribute and change under these terms.
287 |
288 | To do so, attach the following notices to the program. It is safest
289 | to attach them to the start of each source file to most effectively
290 | convey the exclusion of warranty; and each file should have at least
291 | the "copyright" line and a pointer to where the full notice is found.
292 |
293 |
294 | Copyright (C)
295 |
296 | This program is free software; you can redistribute it and/or modify
297 | it under the terms of the GNU General Public License as published by
298 | the Free Software Foundation; either version 2 of the License, or
299 | (at your option) any later version.
300 |
301 | This program is distributed in the hope that it will be useful,
302 | but WITHOUT ANY WARRANTY; without even the implied warranty of
303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304 | GNU General Public License for more details.
305 |
306 | You should have received a copy of the GNU General Public License along
307 | with this program; if not, write to the Free Software Foundation, Inc.,
308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309 |
310 | Also add information on how to contact you by electronic and paper mail.
311 |
312 | If the program is interactive, make it output a short notice like this
313 | when it starts in an interactive mode:
314 |
315 | Gnomovision version 69, Copyright (C) year name of author
316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317 | This is free software, and you are welcome to redistribute it
318 | under certain conditions; type `show c' for details.
319 |
320 | The hypothetical commands `show w' and `show c' should show the appropriate
321 | parts of the General Public License. Of course, the commands you use may
322 | be called something other than `show w' and `show c'; they could even be
323 | mouse-clicks or menu items--whatever suits your program.
324 |
325 | You should also get your employer (if you work as a programmer) or your
326 | school, if any, to sign a "copyright disclaimer" for the program, if
327 | necessary. Here is a sample; alter the names:
328 |
329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330 | `Gnomovision' (which makes passes at compilers) written by James Hacker.
331 |
332 | , 1 April 1989
333 | Ty Coon, President of Vice
334 |
335 | This General Public License does not permit incorporating your program into
336 | proprietary programs. If your program is a subroutine library, you may
337 | consider it more useful to permit linking proprietary applications with the
338 | library. If this is what you want to do, use the GNU Lesser General
339 | Public License instead of this License.
340 |
--------------------------------------------------------------------------------
/pattern-lab/README.md:
--------------------------------------------------------------------------------
1 | # Pattern Lab Twig Standard Edition for Drupal
2 |
3 | The Standard Edition for Drupal gives developers and designers a clean and stable base from which to develop a Drupal compatible pattern library.
4 |
5 | ## Prerequistes
6 |
7 | - [`composer`](https://getcomposer.org)
8 |
9 | ## First Time Install
10 |
11 | 1. Run `composer create-project pattern-lab/edition-drupal-standard FOLDERNAME` (Assuming you wanted it in a directory called `FOLDERNAME`).
12 | 1. Select a starterkit from menu. If asked about replacing files, do it.
13 | 1. Commit any new files if generated.
14 | 1. Run `composer update` to grab new goodies until [issue #1](https://github.com/pattern-lab/edition-php-drupal-standard/issues/1) is resolved.
15 | 1. Commit the updates.
16 |
17 | ## Using It
18 |
19 | After installing and committing, others cloning the repo need to run `composer install` to install dependencies.
20 |
21 | ## Helpful Commands
22 |
23 | These are some helpful commands you can use on the command line for working with Pattern Lab.
24 |
25 | ### Generate Pattern Lab
26 |
27 | To generate the front-end for Pattern Lab type:
28 |
29 | php core/console --generate
30 |
31 | ### Start a server to view Pattern Lab
32 |
33 | You can use PHP's built-in web server to review your Pattern Lab project in a browser. In a separate window type:
34 |
35 | php core/console --server
36 |
37 | Then open [http://localhost:8080](http://localhost:8080) in your browser.
38 |
39 | ### Install a StarterKit
40 |
41 | To install a near-empty StarterKit as a starting point for your project type:
42 |
43 | php core/console --starterkit --init
44 |
45 | To install a specific StarterKit from GitHub type:
46 |
47 | php core/console --starterkit --install
48 |
49 | ### Updating Pattern Lab
50 |
51 | composer update
52 |
53 | ## Other Documentation
54 |
55 | These are crucial pieces that contains documentation that is good to understand:
56 |
57 | - [`pattern-lab/patternengine-twig`](https://github.com/pattern-lab/patternengine-php-twig)
58 | - [`aleksip/plugin-data-transform`](https://github.com/aleksip/plugin-data-transform)
59 | - [Twig templating language](http://twig.sensiolabs.org/documentation)
60 |
--------------------------------------------------------------------------------
/pattern-lab/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "pattern-lab/edition-drupal-standard",
3 | "description": "Standard Edition of Pattern Lab for Drupal.",
4 | "keywords": ["pattern lab", "drupal"],
5 | "homepage": "http://patternlab.io",
6 | "license": "GPL-2.0+",
7 | "type": "project",
8 | "authors": [
9 | {
10 | "name": "Dave Olsen",
11 | "email": "dmolsen@gmail.com",
12 | "homepage": "http://dmolsen.com",
13 | "role": "Lead Developer"
14 | }
15 | ],
16 | "support": {
17 | "issues": "https://github.com/pattern-lab/edition-drupal-standard/issues",
18 | "wiki": "http://patternlab.io/docs/",
19 | "source": "https://github.com/pattern-lab/edition-drupal-standard/releases"
20 | },
21 | "autoload": {
22 | "psr-0": {
23 | "PatternLab": "core/src/"
24 | }
25 | },
26 | "minimum-stability": "dev",
27 | "prefer-stable": true,
28 | "require": {
29 | "php": ">=5.3.6",
30 | "pattern-lab/core": "0.*",
31 | "pattern-lab/patternengine-twig": "~0.7",
32 | "pattern-lab/styleguidekit-twig-default": "0.*",
33 | "pattern-lab/drupal-twig-components": "^0.1.1"
34 | },
35 | "require-dev": {
36 | "aleksip/plugin-data-transform": "dev-master"
37 | },
38 | "scripts": {
39 | "post-create-project-cmd": [
40 | "PatternLab\\Installer::postCreateProjectCmd"
41 | ],
42 | "post-package-install": [
43 | "PatternLab\\Installer::postPackageInstall"
44 | ],
45 | "post-package-update": [
46 | "PatternLab\\Installer::postPackageUpdate"
47 | ],
48 | "pre-install-cmd": [
49 | "PatternLab\\Installer::preInstallCmd"
50 | ],
51 | "pre-package-uninstall": [
52 | "PatternLab\\Installer::prePackageUninstall"
53 | ]
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/pattern-lab/composer.lock:
--------------------------------------------------------------------------------
1 | {
2 | "_readme": [
3 | "This file locks the dependencies of your project to a known state",
4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5 | "This file is @generated automatically"
6 | ],
7 | "hash": "dd21679938e425b57c68c5fab88b2be0",
8 | "content-hash": "5542f49cb7ae6e27182b969aa662a693",
9 | "packages": [
10 | {
11 | "name": "alchemy/zippy",
12 | "version": "0.2.1",
13 | "source": {
14 | "type": "git",
15 | "url": "https://github.com/alchemy-fr/Zippy.git",
16 | "reference": "16285231eb37587c6c32b86fa483c35853cd7515"
17 | },
18 | "dist": {
19 | "type": "zip",
20 | "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/16285231eb37587c6c32b86fa483c35853cd7515",
21 | "reference": "16285231eb37587c6c32b86fa483c35853cd7515",
22 | "shasum": ""
23 | },
24 | "require": {
25 | "doctrine/collections": "~1.0",
26 | "guzzle/guzzle": "~3.0",
27 | "php": ">=5.3.3",
28 | "pimple/pimple": "~1.0",
29 | "symfony/filesystem": "~2.0",
30 | "symfony/process": "~2.0"
31 | },
32 | "require-dev": {
33 | "ext-zip": "*",
34 | "phpunit/phpunit": "~3.7",
35 | "sami/sami": "dev-master@dev",
36 | "symfony/finder": "~2.0"
37 | },
38 | "suggest": {
39 | "ext-zip": "To use the ZipExtensionAdapter"
40 | },
41 | "type": "library",
42 | "extra": {
43 | "branch-alias": {
44 | "dev-master": "0.2.x-dev"
45 | }
46 | },
47 | "autoload": {
48 | "psr-0": {
49 | "Alchemy": "src"
50 | }
51 | },
52 | "notification-url": "https://packagist.org/downloads/",
53 | "license": [
54 | "MIT"
55 | ],
56 | "authors": [
57 | {
58 | "name": "Alchemy",
59 | "email": "dev.team@alchemy.fr",
60 | "homepage": "http://www.alchemy.fr/"
61 | }
62 | ],
63 | "description": "Zippy, the archive manager companion",
64 | "keywords": [
65 | "bzip",
66 | "compression",
67 | "tar",
68 | "zip"
69 | ],
70 | "time": "2014-12-10 15:03:17"
71 | },
72 | {
73 | "name": "doctrine/collections",
74 | "version": "v1.3.0",
75 | "source": {
76 | "type": "git",
77 | "url": "https://github.com/doctrine/collections.git",
78 | "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
79 | },
80 | "dist": {
81 | "type": "zip",
82 | "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
83 | "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
84 | "shasum": ""
85 | },
86 | "require": {
87 | "php": ">=5.3.2"
88 | },
89 | "require-dev": {
90 | "phpunit/phpunit": "~4.0"
91 | },
92 | "type": "library",
93 | "extra": {
94 | "branch-alias": {
95 | "dev-master": "1.2.x-dev"
96 | }
97 | },
98 | "autoload": {
99 | "psr-0": {
100 | "Doctrine\\Common\\Collections\\": "lib/"
101 | }
102 | },
103 | "notification-url": "https://packagist.org/downloads/",
104 | "license": [
105 | "MIT"
106 | ],
107 | "authors": [
108 | {
109 | "name": "Roman Borschel",
110 | "email": "roman@code-factory.org"
111 | },
112 | {
113 | "name": "Benjamin Eberlei",
114 | "email": "kontakt@beberlei.de"
115 | },
116 | {
117 | "name": "Guilherme Blanco",
118 | "email": "guilhermeblanco@gmail.com"
119 | },
120 | {
121 | "name": "Jonathan Wage",
122 | "email": "jonwage@gmail.com"
123 | },
124 | {
125 | "name": "Johannes Schmitt",
126 | "email": "schmittjoh@gmail.com"
127 | }
128 | ],
129 | "description": "Collections Abstraction library",
130 | "homepage": "http://www.doctrine-project.org",
131 | "keywords": [
132 | "array",
133 | "collections",
134 | "iterator"
135 | ],
136 | "time": "2015-04-14 22:21:58"
137 | },
138 | {
139 | "name": "guzzle/guzzle",
140 | "version": "v3.9.3",
141 | "source": {
142 | "type": "git",
143 | "url": "https://github.com/guzzle/guzzle3.git",
144 | "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
145 | },
146 | "dist": {
147 | "type": "zip",
148 | "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
149 | "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
150 | "shasum": ""
151 | },
152 | "require": {
153 | "ext-curl": "*",
154 | "php": ">=5.3.3",
155 | "symfony/event-dispatcher": "~2.1"
156 | },
157 | "replace": {
158 | "guzzle/batch": "self.version",
159 | "guzzle/cache": "self.version",
160 | "guzzle/common": "self.version",
161 | "guzzle/http": "self.version",
162 | "guzzle/inflection": "self.version",
163 | "guzzle/iterator": "self.version",
164 | "guzzle/log": "self.version",
165 | "guzzle/parser": "self.version",
166 | "guzzle/plugin": "self.version",
167 | "guzzle/plugin-async": "self.version",
168 | "guzzle/plugin-backoff": "self.version",
169 | "guzzle/plugin-cache": "self.version",
170 | "guzzle/plugin-cookie": "self.version",
171 | "guzzle/plugin-curlauth": "self.version",
172 | "guzzle/plugin-error-response": "self.version",
173 | "guzzle/plugin-history": "self.version",
174 | "guzzle/plugin-log": "self.version",
175 | "guzzle/plugin-md5": "self.version",
176 | "guzzle/plugin-mock": "self.version",
177 | "guzzle/plugin-oauth": "self.version",
178 | "guzzle/service": "self.version",
179 | "guzzle/stream": "self.version"
180 | },
181 | "require-dev": {
182 | "doctrine/cache": "~1.3",
183 | "monolog/monolog": "~1.0",
184 | "phpunit/phpunit": "3.7.*",
185 | "psr/log": "~1.0",
186 | "symfony/class-loader": "~2.1",
187 | "zendframework/zend-cache": "2.*,<2.3",
188 | "zendframework/zend-log": "2.*,<2.3"
189 | },
190 | "suggest": {
191 | "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
192 | },
193 | "type": "library",
194 | "extra": {
195 | "branch-alias": {
196 | "dev-master": "3.9-dev"
197 | }
198 | },
199 | "autoload": {
200 | "psr-0": {
201 | "Guzzle": "src/",
202 | "Guzzle\\Tests": "tests/"
203 | }
204 | },
205 | "notification-url": "https://packagist.org/downloads/",
206 | "license": [
207 | "MIT"
208 | ],
209 | "authors": [
210 | {
211 | "name": "Michael Dowling",
212 | "email": "mtdowling@gmail.com",
213 | "homepage": "https://github.com/mtdowling"
214 | },
215 | {
216 | "name": "Guzzle Community",
217 | "homepage": "https://github.com/guzzle/guzzle/contributors"
218 | }
219 | ],
220 | "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
221 | "homepage": "http://guzzlephp.org/",
222 | "keywords": [
223 | "client",
224 | "curl",
225 | "framework",
226 | "http",
227 | "http client",
228 | "rest",
229 | "web service"
230 | ],
231 | "time": "2015-03-18 18:23:50"
232 | },
233 | {
234 | "name": "kevinlebrun/colors.php",
235 | "version": "0.4.1",
236 | "source": {
237 | "type": "git",
238 | "url": "https://github.com/kevinlebrun/colors.php.git",
239 | "reference": "d132f36d06e48ea080855af19b4bcb1fb615224a"
240 | },
241 | "dist": {
242 | "type": "zip",
243 | "url": "https://api.github.com/repos/kevinlebrun/colors.php/zipball/d132f36d06e48ea080855af19b4bcb1fb615224a",
244 | "reference": "d132f36d06e48ea080855af19b4bcb1fb615224a",
245 | "shasum": ""
246 | },
247 | "require": {
248 | "php": ">=5.3.0"
249 | },
250 | "require-dev": {
251 | "phpunit/phpunit": "3.7.*",
252 | "satooshi/php-coveralls": "dev-master",
253 | "squizlabs/php_codesniffer": "1.*"
254 | },
255 | "type": "library",
256 | "autoload": {
257 | "psr-0": {
258 | "Colors": "src/"
259 | }
260 | },
261 | "notification-url": "https://packagist.org/downloads/",
262 | "license": [
263 | "MIT"
264 | ],
265 | "authors": [
266 | {
267 | "name": "Kevin Le Brun",
268 | "email": "lebrun.k@gmail.com",
269 | "homepage": "http://kevinlebrun.fr",
270 | "role": "developer"
271 | }
272 | ],
273 | "description": "Colors for PHP CLI scripts",
274 | "homepage": "https://github.com/kevinlebrun/colors.php",
275 | "keywords": [
276 | "cli",
277 | "color",
278 | "colors",
279 | "console",
280 | "shell"
281 | ],
282 | "time": "2014-12-23 01:23:37"
283 | },
284 | {
285 | "name": "michelf/php-markdown",
286 | "version": "1.5.0",
287 | "source": {
288 | "type": "git",
289 | "url": "https://github.com/michelf/php-markdown.git",
290 | "reference": "e1aabe18173231ebcefc90e615565742fc1c7fd9"
291 | },
292 | "dist": {
293 | "type": "zip",
294 | "url": "https://api.github.com/repos/michelf/php-markdown/zipball/e1aabe18173231ebcefc90e615565742fc1c7fd9",
295 | "reference": "e1aabe18173231ebcefc90e615565742fc1c7fd9",
296 | "shasum": ""
297 | },
298 | "require": {
299 | "php": ">=5.3.0"
300 | },
301 | "type": "library",
302 | "extra": {
303 | "branch-alias": {
304 | "dev-lib": "1.4.x-dev"
305 | }
306 | },
307 | "autoload": {
308 | "psr-0": {
309 | "Michelf": ""
310 | }
311 | },
312 | "notification-url": "https://packagist.org/downloads/",
313 | "license": [
314 | "BSD-3-Clause"
315 | ],
316 | "authors": [
317 | {
318 | "name": "John Gruber",
319 | "homepage": "http://daringfireball.net/"
320 | },
321 | {
322 | "name": "Michel Fortin",
323 | "email": "michel.fortin@michelf.ca",
324 | "homepage": "https://michelf.ca/",
325 | "role": "Developer"
326 | }
327 | ],
328 | "description": "PHP Markdown",
329 | "homepage": "https://michelf.ca/projects/php-markdown/",
330 | "keywords": [
331 | "markdown"
332 | ],
333 | "time": "2015-03-01 12:03:08"
334 | },
335 | {
336 | "name": "pattern-lab/core",
337 | "version": "v0.7.2",
338 | "source": {
339 | "type": "git",
340 | "url": "https://github.com/pattern-lab/patternlab-php-core.git",
341 | "reference": "25c71af708d996d1e2b09490b380b3418918d58f"
342 | },
343 | "dist": {
344 | "type": "zip",
345 | "url": "https://api.github.com/repos/pattern-lab/patternlab-php-core/zipball/25c71af708d996d1e2b09490b380b3418918d58f",
346 | "reference": "25c71af708d996d1e2b09490b380b3418918d58f",
347 | "shasum": ""
348 | },
349 | "require": {
350 | "alchemy/zippy": "0.2.1",
351 | "kevinlebrun/colors.php": "0.4.1",
352 | "michelf/php-markdown": "1.5.0",
353 | "pattern-lab/unified-asset-installer": "~0.5",
354 | "php": ">=5.3.6",
355 | "seld/jsonlint": "1.3.1",
356 | "symfony/event-dispatcher": "2.6.4",
357 | "symfony/filesystem": "2.6.4",
358 | "symfony/finder": "2.6.4",
359 | "symfony/yaml": "2.6.4"
360 | },
361 | "type": "library",
362 | "autoload": {
363 | "psr-0": {
364 | "PatternLab": "src/"
365 | }
366 | },
367 | "notification-url": "https://packagist.org/downloads/",
368 | "license": [
369 | "MIT"
370 | ],
371 | "authors": [
372 | {
373 | "name": "Dave Olsen",
374 | "email": "dmolsen@gmail.com",
375 | "homepage": "http://dmolsen.com",
376 | "role": "Lead Developer"
377 | },
378 | {
379 | "name": "Brad Frost",
380 | "homepage": "http://bradfrostweb.com",
381 | "role": "Creator"
382 | }
383 | ],
384 | "description": "The core functionality for Pattern Lab.",
385 | "homepage": "http://patternlab.io",
386 | "keywords": [
387 | "atomic",
388 | "atomic design",
389 | "pattern lab",
390 | "style guide",
391 | "styleguide"
392 | ],
393 | "time": "2016-04-29 19:24:16"
394 | },
395 | {
396 | "name": "pattern-lab/drupal-twig-components",
397 | "version": "v0.1.3",
398 | "source": {
399 | "type": "git",
400 | "url": "https://github.com/pattern-lab/plugin-drupal-twig-components.git",
401 | "reference": "e249d8d141d08830ebfa8b893a74aaae7146263f"
402 | },
403 | "dist": {
404 | "type": "zip",
405 | "url": "https://api.github.com/repos/pattern-lab/plugin-drupal-twig-components/zipball/e249d8d141d08830ebfa8b893a74aaae7146263f",
406 | "reference": "e249d8d141d08830ebfa8b893a74aaae7146263f",
407 | "shasum": ""
408 | },
409 | "type": "patternlab-plugin",
410 | "extra": {
411 | "patternlab": {
412 | "dist": {
413 | "sourceDir": [
414 | {
415 | "filters/*": "_twig-components/filters/*"
416 | },
417 | {
418 | "functions/*": "_twig-components/functions/*"
419 | },
420 | {
421 | "tags/*": "_twig-components/tags/*"
422 | },
423 | {
424 | "tests/*": "_twig-components/tests/*"
425 | }
426 | ]
427 | }
428 | }
429 | },
430 | "notification-url": "https://packagist.org/downloads/",
431 | "license": [
432 | "MIT"
433 | ],
434 | "authors": [
435 | {
436 | "name": "Dave Olsen",
437 | "email": "dmolsen@gmail.com",
438 | "homepage": "http://dmolsen.com",
439 | "role": "Lead Developer"
440 | }
441 | ],
442 | "description": "A collection of Twig components to be used with Drupal- and Twig-related StarterKits.",
443 | "homepage": "http://patternlab.io",
444 | "keywords": [
445 | "drupal",
446 | "pattern lab",
447 | "twig"
448 | ],
449 | "time": "2016-04-29 21:04:30"
450 | },
451 | {
452 | "name": "pattern-lab/patternengine-twig",
453 | "version": "v0.7.4",
454 | "source": {
455 | "type": "git",
456 | "url": "https://github.com/pattern-lab/patternengine-php-twig.git",
457 | "reference": "a97d76ce38c50b3f0d1c6580ef7e11bec4476030"
458 | },
459 | "dist": {
460 | "type": "zip",
461 | "url": "https://api.github.com/repos/pattern-lab/patternengine-php-twig/zipball/a97d76ce38c50b3f0d1c6580ef7e11bec4476030",
462 | "reference": "a97d76ce38c50b3f0d1c6580ef7e11bec4476030",
463 | "shasum": ""
464 | },
465 | "require": {
466 | "pattern-lab/core": "0.*",
467 | "php": ">=5.3.6",
468 | "twig/twig": "1.*"
469 | },
470 | "type": "patternlab-patternengine",
471 | "extra": {
472 | "patternlab": {
473 | "config": {
474 | "lineageMatch": "{%([ ]+)?include( |\\()["\\']([A-Za-z0-9-_]+)["\\'](\\))?(.*)%}",
475 | "lineageMatchKey": 3,
476 | "patternExtension": "twig",
477 | "twigDebug": false,
478 | "twigAutoescape": "html",
479 | "twigDefaultDateFormat": "",
480 | "twigDefaultIntervalFormat": "",
481 | "twigMacroExt": "macro.twig",
482 | "twigFilterExt": "filter.php",
483 | "twigFunctionExt": "function.php",
484 | "twigTagExt": "tag.php",
485 | "twigTestExt": "test.php"
486 | }
487 | }
488 | },
489 | "autoload": {
490 | "psr-0": {
491 | "PatternLab\\PatternEngine\\Twig": "src/"
492 | }
493 | },
494 | "notification-url": "https://packagist.org/downloads/",
495 | "license": [
496 | "MIT"
497 | ],
498 | "authors": [
499 | {
500 | "name": "Dave Olsen",
501 | "email": "dmolsen@gmail.com",
502 | "homepage": "http://dmolsen.com",
503 | "role": "Lead Developer"
504 | }
505 | ],
506 | "description": "Twig-based PatternEngine for Pattern Lab.",
507 | "homepage": "http://patternlab.io",
508 | "keywords": [
509 | "pattern engine",
510 | "pattern lab",
511 | "twig"
512 | ],
513 | "time": "2016-05-06 01:18:23"
514 | },
515 | {
516 | "name": "pattern-lab/styleguidekit-assets-default",
517 | "version": "v0.6.5",
518 | "source": {
519 | "type": "git",
520 | "url": "https://github.com/pattern-lab/styleguidekit-assets-default.git",
521 | "reference": "12908757a15fddcbcbdf277433614cfae2db6bf7"
522 | },
523 | "dist": {
524 | "type": "zip",
525 | "url": "https://api.github.com/repos/pattern-lab/styleguidekit-assets-default/zipball/12908757a15fddcbcbdf277433614cfae2db6bf7",
526 | "reference": "12908757a15fddcbcbdf277433614cfae2db6bf7",
527 | "shasum": ""
528 | },
529 | "require": {
530 | "pattern-lab/core": "0.*"
531 | },
532 | "type": "patternlab-styleguidekit",
533 | "extra": {
534 | "patternlab": {
535 | "dist": {
536 | "publicDir": [
537 | {
538 | "bower_components/*": "styleguide/bower_components/*"
539 | },
540 | {
541 | "css/patternlab/*": "styleguide/css/*"
542 | },
543 | {
544 | "fonts/*": "styleguide/fonts/*"
545 | },
546 | {
547 | "html/index.html": "index.html"
548 | },
549 | {
550 | "images/*": "styleguide/images/*"
551 | },
552 | {
553 | "js/*": "styleguide/js/*"
554 | }
555 | ],
556 | "sourceDir": [
557 | {
558 | "css/custom/*": "styleguide/css/*"
559 | }
560 | ]
561 | },
562 | "config": {
563 | "ishMinimum": "240",
564 | "ishMaximum": "2600",
565 | "ishControlsHide": [
566 | "hay"
567 | ]
568 | }
569 | }
570 | },
571 | "notification-url": "https://packagist.org/downloads/",
572 | "license": [
573 | "MIT"
574 | ],
575 | "authors": [
576 | {
577 | "name": "Dave Olsen",
578 | "email": "dmolsen@gmail.com",
579 | "homepage": "http://dmolsen.com",
580 | "role": "Lead Developer"
581 | },
582 | {
583 | "name": "Brad Frost",
584 | "homepage": "http://bradfrostweb.com",
585 | "role": "Creator"
586 | }
587 | ],
588 | "description": "The assets for the default StyleguideKit for Pattern Lab. Contains styles and mark-up for Pattern Lab's front-end.",
589 | "homepage": "http://patternlab.io",
590 | "keywords": [
591 | "mustache",
592 | "pattern lab",
593 | "styleguide"
594 | ],
595 | "time": "2015-03-07 19:29:06"
596 | },
597 | {
598 | "name": "pattern-lab/styleguidekit-twig-default",
599 | "version": "v0.6.5",
600 | "source": {
601 | "type": "git",
602 | "url": "https://github.com/pattern-lab/styleguidekit-twig-default.git",
603 | "reference": "3a3aef3c7570869e21e9882f15d1af13e6155bbd"
604 | },
605 | "dist": {
606 | "type": "zip",
607 | "url": "https://api.github.com/repos/pattern-lab/styleguidekit-twig-default/zipball/3a3aef3c7570869e21e9882f15d1af13e6155bbd",
608 | "reference": "3a3aef3c7570869e21e9882f15d1af13e6155bbd",
609 | "shasum": ""
610 | },
611 | "require": {
612 | "pattern-lab/core": "0.*",
613 | "pattern-lab/patternengine-twig": "0.*",
614 | "pattern-lab/styleguidekit-assets-default": "0.*",
615 | "twig/twig": "1.*"
616 | },
617 | "type": "patternlab-styleguidekit",
618 | "notification-url": "https://packagist.org/downloads/",
619 | "license": [
620 | "MIT"
621 | ],
622 | "authors": [
623 | {
624 | "name": "Dave Olsen",
625 | "email": "dmolsen@gmail.com",
626 | "homepage": "http://dmolsen.com",
627 | "role": "Lead Developer"
628 | },
629 | {
630 | "name": "Brad Frost",
631 | "homepage": "http://bradfrostweb.com",
632 | "role": "Creator"
633 | }
634 | ],
635 | "description": "The default Twig-based StyleguideKit for Pattern Lab. Contains styles and mark-up for Pattern Lab's front-end.",
636 | "homepage": "http://patternlab.io",
637 | "keywords": [
638 | "pattern lab",
639 | "styleguide",
640 | "twig"
641 | ],
642 | "time": "2015-03-07 22:24:36"
643 | },
644 | {
645 | "name": "pattern-lab/unified-asset-installer",
646 | "version": "v0.5.6",
647 | "source": {
648 | "type": "git",
649 | "url": "https://github.com/pattern-lab/unified-asset-installer.git",
650 | "reference": "ff77fa7032b310400bddc23583ca86d62afd117f"
651 | },
652 | "dist": {
653 | "type": "zip",
654 | "url": "https://api.github.com/repos/pattern-lab/unified-asset-installer/zipball/ff77fa7032b310400bddc23583ca86d62afd117f",
655 | "reference": "ff77fa7032b310400bddc23583ca86d62afd117f",
656 | "shasum": ""
657 | },
658 | "require": {
659 | "composer-plugin-api": "^1.0",
660 | "php": ">=5.3.6"
661 | },
662 | "type": "composer-installer",
663 | "extra": {
664 | "class": "\\PatternLab\\Composer\\UnifiedAssetInstaller"
665 | },
666 | "autoload": {
667 | "psr-0": {
668 | "PatternLab\\Composer": "src/"
669 | }
670 | },
671 | "notification-url": "https://packagist.org/downloads/",
672 | "license": [
673 | "MIT"
674 | ],
675 | "authors": [
676 | {
677 | "name": "Dave Olsen",
678 | "email": "dmolsen@gmail.com",
679 | "homepage": "http://dmolsen.com",
680 | "role": "Lead Developer"
681 | }
682 | ],
683 | "description": "Manages the installation of Pattern Lab-related assets like StarterKits, PatternEngines, and Plug-ins.",
684 | "homepage": "http://patternlab.io",
685 | "keywords": [
686 | "assets",
687 | "installer",
688 | "pattern lab",
689 | "plugins"
690 | ],
691 | "time": "2016-05-12 00:32:50"
692 | },
693 | {
694 | "name": "pimple/pimple",
695 | "version": "v1.1.1",
696 | "source": {
697 | "type": "git",
698 | "url": "https://github.com/silexphp/Pimple.git",
699 | "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
700 | },
701 | "dist": {
702 | "type": "zip",
703 | "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
704 | "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
705 | "shasum": ""
706 | },
707 | "require": {
708 | "php": ">=5.3.0"
709 | },
710 | "type": "library",
711 | "extra": {
712 | "branch-alias": {
713 | "dev-master": "1.1.x-dev"
714 | }
715 | },
716 | "autoload": {
717 | "psr-0": {
718 | "Pimple": "lib/"
719 | }
720 | },
721 | "notification-url": "https://packagist.org/downloads/",
722 | "license": [
723 | "MIT"
724 | ],
725 | "authors": [
726 | {
727 | "name": "Fabien Potencier",
728 | "email": "fabien@symfony.com"
729 | }
730 | ],
731 | "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
732 | "homepage": "http://pimple.sensiolabs.org",
733 | "keywords": [
734 | "container",
735 | "dependency injection"
736 | ],
737 | "time": "2013-11-22 08:30:29"
738 | },
739 | {
740 | "name": "seld/jsonlint",
741 | "version": "1.3.1",
742 | "source": {
743 | "type": "git",
744 | "url": "https://github.com/Seldaek/jsonlint.git",
745 | "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4"
746 | },
747 | "dist": {
748 | "type": "zip",
749 | "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
750 | "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
751 | "shasum": ""
752 | },
753 | "require": {
754 | "php": ">=5.3.0"
755 | },
756 | "bin": [
757 | "bin/jsonlint"
758 | ],
759 | "type": "library",
760 | "autoload": {
761 | "psr-4": {
762 | "Seld\\JsonLint\\": "src/Seld/JsonLint/"
763 | }
764 | },
765 | "notification-url": "https://packagist.org/downloads/",
766 | "license": [
767 | "MIT"
768 | ],
769 | "authors": [
770 | {
771 | "name": "Jordi Boggiano",
772 | "email": "j.boggiano@seld.be",
773 | "homepage": "http://seld.be"
774 | }
775 | ],
776 | "description": "JSON Linter",
777 | "keywords": [
778 | "json",
779 | "linter",
780 | "parser",
781 | "validator"
782 | ],
783 | "time": "2015-01-04 21:18:15"
784 | },
785 | {
786 | "name": "symfony/event-dispatcher",
787 | "version": "v2.6.4",
788 | "target-dir": "Symfony/Component/EventDispatcher",
789 | "source": {
790 | "type": "git",
791 | "url": "https://github.com/symfony/event-dispatcher.git",
792 | "reference": "f75989f3ab2743a82fe0b03ded2598a2b1546813"
793 | },
794 | "dist": {
795 | "type": "zip",
796 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f75989f3ab2743a82fe0b03ded2598a2b1546813",
797 | "reference": "f75989f3ab2743a82fe0b03ded2598a2b1546813",
798 | "shasum": ""
799 | },
800 | "require": {
801 | "php": ">=5.3.3"
802 | },
803 | "require-dev": {
804 | "psr/log": "~1.0",
805 | "symfony/config": "~2.0,>=2.0.5",
806 | "symfony/dependency-injection": "~2.6",
807 | "symfony/expression-language": "~2.6",
808 | "symfony/stopwatch": "~2.3"
809 | },
810 | "suggest": {
811 | "symfony/dependency-injection": "",
812 | "symfony/http-kernel": ""
813 | },
814 | "type": "library",
815 | "extra": {
816 | "branch-alias": {
817 | "dev-master": "2.6-dev"
818 | }
819 | },
820 | "autoload": {
821 | "psr-0": {
822 | "Symfony\\Component\\EventDispatcher\\": ""
823 | }
824 | },
825 | "notification-url": "https://packagist.org/downloads/",
826 | "license": [
827 | "MIT"
828 | ],
829 | "authors": [
830 | {
831 | "name": "Symfony Community",
832 | "homepage": "http://symfony.com/contributors"
833 | },
834 | {
835 | "name": "Fabien Potencier",
836 | "email": "fabien@symfony.com"
837 | }
838 | ],
839 | "description": "Symfony EventDispatcher Component",
840 | "homepage": "http://symfony.com",
841 | "time": "2015-02-01 16:10:57"
842 | },
843 | {
844 | "name": "symfony/filesystem",
845 | "version": "v2.6.4",
846 | "target-dir": "Symfony/Component/Filesystem",
847 | "source": {
848 | "type": "git",
849 | "url": "https://github.com/symfony/filesystem.git",
850 | "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7"
851 | },
852 | "dist": {
853 | "type": "zip",
854 | "url": "https://api.github.com/repos/symfony/filesystem/zipball/a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
855 | "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
856 | "shasum": ""
857 | },
858 | "require": {
859 | "php": ">=5.3.3"
860 | },
861 | "type": "library",
862 | "extra": {
863 | "branch-alias": {
864 | "dev-master": "2.6-dev"
865 | }
866 | },
867 | "autoload": {
868 | "psr-0": {
869 | "Symfony\\Component\\Filesystem\\": ""
870 | }
871 | },
872 | "notification-url": "https://packagist.org/downloads/",
873 | "license": [
874 | "MIT"
875 | ],
876 | "authors": [
877 | {
878 | "name": "Symfony Community",
879 | "homepage": "http://symfony.com/contributors"
880 | },
881 | {
882 | "name": "Fabien Potencier",
883 | "email": "fabien@symfony.com"
884 | }
885 | ],
886 | "description": "Symfony Filesystem Component",
887 | "homepage": "http://symfony.com",
888 | "time": "2015-01-03 21:13:09"
889 | },
890 | {
891 | "name": "symfony/finder",
892 | "version": "v2.6.4",
893 | "target-dir": "Symfony/Component/Finder",
894 | "source": {
895 | "type": "git",
896 | "url": "https://github.com/symfony/Finder.git",
897 | "reference": "16513333bca64186c01609961a2bb1b95b5e1355"
898 | },
899 | "dist": {
900 | "type": "zip",
901 | "url": "https://api.github.com/repos/symfony/Finder/zipball/16513333bca64186c01609961a2bb1b95b5e1355",
902 | "reference": "16513333bca64186c01609961a2bb1b95b5e1355",
903 | "shasum": ""
904 | },
905 | "require": {
906 | "php": ">=5.3.3"
907 | },
908 | "type": "library",
909 | "extra": {
910 | "branch-alias": {
911 | "dev-master": "2.6-dev"
912 | }
913 | },
914 | "autoload": {
915 | "psr-0": {
916 | "Symfony\\Component\\Finder\\": ""
917 | }
918 | },
919 | "notification-url": "https://packagist.org/downloads/",
920 | "license": [
921 | "MIT"
922 | ],
923 | "authors": [
924 | {
925 | "name": "Symfony Community",
926 | "homepage": "http://symfony.com/contributors"
927 | },
928 | {
929 | "name": "Fabien Potencier",
930 | "email": "fabien@symfony.com"
931 | }
932 | ],
933 | "description": "Symfony Finder Component",
934 | "homepage": "http://symfony.com",
935 | "time": "2015-01-03 08:01:59"
936 | },
937 | {
938 | "name": "symfony/process",
939 | "version": "v2.8.6",
940 | "source": {
941 | "type": "git",
942 | "url": "https://github.com/symfony/process.git",
943 | "reference": "1276bd9be89be039748cf753a2137f4ef149cd74"
944 | },
945 | "dist": {
946 | "type": "zip",
947 | "url": "https://api.github.com/repos/symfony/process/zipball/1276bd9be89be039748cf753a2137f4ef149cd74",
948 | "reference": "1276bd9be89be039748cf753a2137f4ef149cd74",
949 | "shasum": ""
950 | },
951 | "require": {
952 | "php": ">=5.3.9"
953 | },
954 | "type": "library",
955 | "extra": {
956 | "branch-alias": {
957 | "dev-master": "2.8-dev"
958 | }
959 | },
960 | "autoload": {
961 | "psr-4": {
962 | "Symfony\\Component\\Process\\": ""
963 | },
964 | "exclude-from-classmap": [
965 | "/Tests/"
966 | ]
967 | },
968 | "notification-url": "https://packagist.org/downloads/",
969 | "license": [
970 | "MIT"
971 | ],
972 | "authors": [
973 | {
974 | "name": "Fabien Potencier",
975 | "email": "fabien@symfony.com"
976 | },
977 | {
978 | "name": "Symfony Community",
979 | "homepage": "https://symfony.com/contributors"
980 | }
981 | ],
982 | "description": "Symfony Process Component",
983 | "homepage": "https://symfony.com",
984 | "time": "2016-04-14 15:22:22"
985 | },
986 | {
987 | "name": "symfony/yaml",
988 | "version": "v2.6.4",
989 | "target-dir": "Symfony/Component/Yaml",
990 | "source": {
991 | "type": "git",
992 | "url": "https://github.com/symfony/Yaml.git",
993 | "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8"
994 | },
995 | "dist": {
996 | "type": "zip",
997 | "url": "https://api.github.com/repos/symfony/Yaml/zipball/60ed7751671113cf1ee7d7778e691642c2e9acd8",
998 | "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8",
999 | "shasum": ""
1000 | },
1001 | "require": {
1002 | "php": ">=5.3.3"
1003 | },
1004 | "type": "library",
1005 | "extra": {
1006 | "branch-alias": {
1007 | "dev-master": "2.6-dev"
1008 | }
1009 | },
1010 | "autoload": {
1011 | "psr-0": {
1012 | "Symfony\\Component\\Yaml\\": ""
1013 | }
1014 | },
1015 | "notification-url": "https://packagist.org/downloads/",
1016 | "license": [
1017 | "MIT"
1018 | ],
1019 | "authors": [
1020 | {
1021 | "name": "Symfony Community",
1022 | "homepage": "http://symfony.com/contributors"
1023 | },
1024 | {
1025 | "name": "Fabien Potencier",
1026 | "email": "fabien@symfony.com"
1027 | }
1028 | ],
1029 | "description": "Symfony Yaml Component",
1030 | "homepage": "http://symfony.com",
1031 | "time": "2015-01-25 04:39:26"
1032 | },
1033 | {
1034 | "name": "twig/twig",
1035 | "version": "v1.24.0",
1036 | "source": {
1037 | "type": "git",
1038 | "url": "https://github.com/twigphp/Twig.git",
1039 | "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8"
1040 | },
1041 | "dist": {
1042 | "type": "zip",
1043 | "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
1044 | "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
1045 | "shasum": ""
1046 | },
1047 | "require": {
1048 | "php": ">=5.2.7"
1049 | },
1050 | "require-dev": {
1051 | "symfony/debug": "~2.7",
1052 | "symfony/phpunit-bridge": "~2.7"
1053 | },
1054 | "type": "library",
1055 | "extra": {
1056 | "branch-alias": {
1057 | "dev-master": "1.24-dev"
1058 | }
1059 | },
1060 | "autoload": {
1061 | "psr-0": {
1062 | "Twig_": "lib/"
1063 | }
1064 | },
1065 | "notification-url": "https://packagist.org/downloads/",
1066 | "license": [
1067 | "BSD-3-Clause"
1068 | ],
1069 | "authors": [
1070 | {
1071 | "name": "Fabien Potencier",
1072 | "email": "fabien@symfony.com",
1073 | "homepage": "http://fabien.potencier.org",
1074 | "role": "Lead Developer"
1075 | },
1076 | {
1077 | "name": "Armin Ronacher",
1078 | "email": "armin.ronacher@active-4.com",
1079 | "role": "Project Founder"
1080 | },
1081 | {
1082 | "name": "Twig Team",
1083 | "homepage": "http://twig.sensiolabs.org/contributors",
1084 | "role": "Contributors"
1085 | }
1086 | ],
1087 | "description": "Twig, the flexible, fast, and secure template language for PHP",
1088 | "homepage": "http://twig.sensiolabs.org",
1089 | "keywords": [
1090 | "templating"
1091 | ],
1092 | "time": "2016-01-25 21:22:18"
1093 | }
1094 | ],
1095 | "packages-dev": [
1096 | {
1097 | "name": "aleksip/plugin-data-transform",
1098 | "version": "dev-master",
1099 | "source": {
1100 | "type": "git",
1101 | "url": "https://github.com/aleksip/plugin-data-transform.git",
1102 | "reference": "527b5cec2cc44fb9d6f300003beff26cbb81127f"
1103 | },
1104 | "dist": {
1105 | "type": "zip",
1106 | "url": "https://api.github.com/repos/aleksip/plugin-data-transform/zipball/527b5cec2cc44fb9d6f300003beff26cbb81127f",
1107 | "reference": "527b5cec2cc44fb9d6f300003beff26cbb81127f",
1108 | "shasum": ""
1109 | },
1110 | "require": {
1111 | "pattern-lab/patternengine-twig": "0.*",
1112 | "php": ">=5.5.9"
1113 | },
1114 | "type": "patternlab-plugin",
1115 | "autoload": {
1116 | "psr-0": {
1117 | "aleksip\\DataTransformPlugin\\": "src/",
1118 | "Drupal\\Component\\Render\\": "src/",
1119 | "Drupal\\Component\\Utility\\": "src/",
1120 | "Drupal\\Core\\Template\\": "src/"
1121 | }
1122 | },
1123 | "notification-url": "https://packagist.org/downloads/",
1124 | "license": [
1125 | "GPL-2.0+"
1126 | ],
1127 | "authors": [
1128 | {
1129 | "name": "Aleksi Peebles"
1130 | }
1131 | ],
1132 | "description": "Data Transform Plugin for Pattern Lab PHP",
1133 | "homepage": "https://github.com/aleksip/plugin-data-transform",
1134 | "keywords": [
1135 | "drupal",
1136 | "pattern lab",
1137 | "plugin"
1138 | ],
1139 | "time": "2016-05-11 14:38:38"
1140 | }
1141 | ],
1142 | "aliases": [],
1143 | "minimum-stability": "dev",
1144 | "stability-flags": {
1145 | "aleksip/plugin-data-transform": 20
1146 | },
1147 | "prefer-stable": true,
1148 | "prefer-lowest": false,
1149 | "platform": {
1150 | "php": ">=5.3.6"
1151 | },
1152 | "platform-dev": []
1153 | }
1154 |
--------------------------------------------------------------------------------
/pattern-lab/config/.gitkeep:
--------------------------------------------------------------------------------
1 | After you generate Pattern Lab for the first time your configuration file will be placed here.
--------------------------------------------------------------------------------
/pattern-lab/config/config.yml:
--------------------------------------------------------------------------------
1 | v: 2.0.0-DP1
2 | overrideConfig: false
3 | ie:
4 | - DS_Store
5 | - less
6 | - scss
7 | id:
8 | - scss
9 | - .svn
10 | - .sass-cache
11 | cleanPublic: 'true'
12 | patternStates:
13 | - inprogress
14 | - inreview
15 | - complete
16 | styleGuideExcludes: ''
17 | cacheBusterOn: 'true'
18 | exportDir: export
19 | packagesDir: packages
20 | publicDir: public
21 | sourceDir: source
22 | ishMinimum: '240'
23 | ishMaximum: '2600'
24 | ishControlsHide:
25 | - hay
26 | lineageMatch: '{%([ ]+)?include( |\()["\']([A-Za-z0-9-_]+)["\'](\))?(.*)%}'
27 | lineageMatchKey: 3
28 | patternExtension: twig
29 | twigDebug: false
30 | twigAutoescape: false
31 | twigDefaultDateFormat: ''
32 | twigDefaultIntervalFormat: ''
33 | twigMacroExt: macro.twig
34 | twigFilterExt: filter.php
35 | twigFunctionExt: function.php
36 | twigTagExt: tag.php
37 | twigTestExt: test.php
38 | styleguideKit: pattern-lab/styleguidekit-twig-default
39 |
--------------------------------------------------------------------------------
/pattern-lab/core/console:
--------------------------------------------------------------------------------
1 | dispatch("config.configLoadEnd");
44 |
45 | // run the console
46 | Console::run();
47 |
--------------------------------------------------------------------------------
/pattern-lab/core/server/router.php:
--------------------------------------------------------------------------------
1 |
Navigation for adaptive web experiences can be tricky. Top navigations are typical on desktop sites, but mobile screen sizes don't give us the luxury of space. We're dealing with this situation by creating a simple menu anchor that toggles the main navigation on small screens. This is just one method. Bagcheck and Contents Magazine add an anchor in the header that jumps users to the navigation which is placed in the footer. This solution works well because it doesn't require any Javascript in order to work. Other methods exist too. For example, ESPN's mobile navigation overlays the main content of the page.
The nav is only hidden when a certain level of javascript is supported in order to ensure that users with little/poor javascript support can still access the navigation. Once the screen size is large enough to accommodate the nav, we show the main navigation links and hide the menu anchor.
Search is an incredibly important priority, especially for mobile. It is a great idea to give users the ability to jump directly to what they are looking for without forcing them to wade through your site's navigation. Check out the Burton and Yelp mobile sites for great examples of experiences that prioritize search.
We're also using the HTML5 search input type, which is great for mobile devices that can bring up the appropriate virtual keyboard for many smartphones. And like the main header navigation, we're hiding the search form on small screens to save space. Clicking the search anchor toggles the form.
A paragraph (from the Greek paragraphos, "to write beside" or "written beside") is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.
A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text, and typically distinguished visually using indentation and a different typeface or smaller size quotation.
An unordered list is a list in which the sequence of items is not important. Sometimes, an unordered list is a bulleted list. And this is a long list item in an unordered list that can wrap onto a new line.
5 |
6 | Lists can be nested inside of each other
7 |
8 |
This is a nested list item
9 |
This is another nested list item in an unordered list