You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A Drupal project usually consists of the following:
19
19
* Perhaps even some PHP libraries found on GitHub
20
20
* Custom code written by you and your team mates
21
21
22
-
The most popular approach to assembling these parts is using [Drush Make](http://drush.ws/docs/make.txt).
22
+
The most popular approach to assembling these parts is using [Drush Make](http://drush.ws/docs/make.txt).
23
23
24
24
Meanwhile the PHP Community has gathered around another dependency manager, [Composer](https://getcomposer.org/). It is even used for [managing dependencies for Drupal 8 Core](https://drupal.org/node/1764330).
25
25
@@ -51,7 +51,7 @@ The core version of Drupal to be used with the project is specified using the [C
51
51
52
52
Adding the following package to the `repositories` and `requires` sections will download Drupal 7.28 to the root of the Composer project:
53
53
54
-
```json
54
+
```json
55
55
{
56
56
"repositories": [
57
57
{
@@ -101,7 +101,7 @@ All Drupal projects to be retrieved should be added as dependencies in the forma
101
101
The following will download the [Chaos tool suite (ctools)](https://drupal.org/project/ctools) module version 1.4 for Drupal 7.
102
102
103
103
104
-
```json
104
+
```json
105
105
{
106
106
"require": {
107
107
"drupal/ctools": "7.1.4"
@@ -139,11 +139,11 @@ You specify the version of each project using [Composer package version constrai
139
139
140
140
In this example the following releases of Drupal 7 modules will be downloaded:
141
141
142
-
* Latest stable minor release of Chaos tool suite 1.x
142
+
* Latest stable minor release of Chaos tool suite 1.x
143
143
* Latest stable release of Features
144
144
* Latest development release of Views 3.x
145
145
146
-
```json
146
+
```json
147
147
{
148
148
"require": {
149
149
"drupal/ctools": "7.1.*",
@@ -275,23 +275,23 @@ Non-Drupal non-Composer libraries can be retrieved by specifying them as custom
0 commit comments