File tree 4 files changed +27
-14
lines changed
4 files changed +27
-14
lines changed Original file line number Diff line number Diff line change 6
6
COMPOSER_MEMORY_LIMIT : -1
7
7
SIMPLETEST_DB : sqlite://tmp/site.sqlite
8
8
SIMPLETEST_BASE_URL : " http://127.0.0.1:8080"
9
+ COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
10
+ WODBY_ENVIRONMENT_TYPE : CI
9
11
10
12
jobs :
11
13
build :
@@ -51,10 +53,10 @@ jobs:
51
53
run : composer --verbose install
52
54
53
55
- if : matrix.drupal-release == 'dev'
54
- run : composer --verbose require --no-update drupal/core-recommended:9.2.x-dev && composer --verbose require --no-update --dev drupal/core-dev:9.2.x-dev
55
-
56
- - if : matrix.drupal-release == ' dev'
57
- run : composer --verbose update
56
+ run : |
57
+ composer --verbose require --no-update drupal/core-recommended:9.2.x-dev
58
+ composer --verbose require --no-update --dev drupal/core- dev:9.2.x-dev
59
+ composer --verbose update
58
60
59
61
- run : ./vendor/bin/drush site-install --verbose --yes --db-url=sqlite://tmp/site.sqlite
60
62
Original file line number Diff line number Diff line change 8
8
/web /libraries /
9
9
10
10
# Ignore sensitive information
11
- /web /sites /* /settings.php
12
11
/web /sites /* /settings.local.php
13
12
14
13
# Ignore Drupal's file directory
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " drupal-composer /drupal-project" ,
2
+ "name" : " ramsalt /drupal-project" ,
3
3
"description" : " Project template for Drupal 9 projects with Composer" ,
4
4
"type" : " project" ,
5
5
"license" : " GPL-2.0-or-later" ,
6
6
"authors" : [
7
7
{
8
- "name" : " " ,
8
+ "name" :
" Marlon <[email protected] > " ,
9
9
"role" : " "
10
- }
11
- ],
12
- "repositories" : [
10
+ },
13
11
{
14
- "type " : " composer " ,
15
- "url " : " https://packages.drupal.org/8 "
12
+ "name " :
" Stephan <[email protected] > " ,
13
+ "role " : " "
16
14
}
17
15
],
16
+ "repositories" : {
17
+ "private-packagist" : {
18
+ "type" : " composer" ,
19
+ "url" : " https://repo.packagist.com/ramsalt/"
20
+ },
21
+ "packagist.org" : false
22
+ },
18
23
"require" : {
19
24
"php" : " >=7.3" ,
20
25
"composer/installers" : " ^1.9" ,
21
26
"cweagans/composer-patches" : " ^1.7" ,
22
27
"drupal/core-composer-scaffold" : " ^9.1" ,
23
28
"drupal/core-recommended" : " ^9.1" ,
24
29
"drush/drush" : " ^10.3" ,
30
+ "ramsalt/drupal-scaffold" : " *" ,
25
31
"vlucas/phpdotenv" : " ^5.1" ,
26
32
"webflo/drupal-finder" : " ^1.2"
27
33
},
60
66
},
61
67
"extra" : {
62
68
"drupal-scaffold" : {
69
+ "allowed-packages" : [
70
+ " ramsalt/drupal-scaffold"
71
+ ],
63
72
"locations" : {
64
73
"web-root" : " web/"
65
74
}
76
85
"patchLevel" : {
77
86
"drupal/core" : " -p2"
78
87
},
79
- "patches " : {
80
- }
88
+ "enable-patching " : true ,
89
+ "patches-file" : " composer.patches.json "
81
90
}
82
91
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "patches" : {}
3
+ }
You can’t perform that action at this time.
0 commit comments