Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: php
php:
- 5.5
- 7.0
install:
- composer create-project --no-interaction
script:
- php core/console --generate
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Please follow the directions for [installing Composer](https://getcomposer.org/d
Use Composer's [`create-project` command](https://getcomposer.org/doc/03-cli.md#create-project) to install the Standard Edition for Twig into a location of your choosing. In Terminal type:

cd install/location/
composer create-project pattern-lab/edition-twig-standard your-project-name && cd $_
composer create-project --repository '{ "type": "vcs", "url": "https://github.com/drupal-pattern-lab/edition-php-twig-standard" }' pattern-lab/edition-twig-standard your-project-name && cd $_

This will install the Standard Edition for Twig into a directory called `your-project-name` in `install/location/`. During the set-up process you will be asked to install an appropriate StarterKit. You will be automatically dropped into the project directory after the process is finished.

Expand Down
14 changes: 14 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@
"PatternLab": "core/src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/drupal-pattern-lab/patternlab-php-core"
},
{
"type": "vcs",
"url": "https://github.com/drupal-pattern-lab/patternengine-php-twig"
},
{
"type": "vcs",
"url": "https://github.com/drupal-pattern-lab/styleguidekit-twig-default"
}
],
"require": {
"php": ">=5.4",
"pattern-lab/core": "^2.0.0",
Expand Down