File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 12
12
matrix :
13
13
php-version :
14
14
- " 8.0"
15
+ - " 8.1"
15
16
- " 8.2"
16
17
steps :
17
18
- name : Checkout
Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ test-container80:
40
40
@-docker-compose run --rm app80 bash
41
41
@docker-compose down -v
42
42
43
+ .PHONY : test-container81
44
+ test-container81 :
45
+ @-docker-compose run --rm app81 bash
46
+ @docker-compose down -v
47
+
43
48
.PHONY : test-container82
44
49
test-container82 :
45
50
@-docker-compose run --rm app82 bash
Original file line number Diff line number Diff line change @@ -12,6 +12,17 @@ services:
12
12
- .:/app:delegated
13
13
- ~/.composer:/root/.composer:delegated
14
14
working_dir : /app
15
+ app81 :
16
+ build :
17
+ context : .
18
+ args :
19
+ PHP_VERSION : ' 8.1'
20
+ environment :
21
+ PHP_IDE_CONFIG : ' serverName=olvlvl/attribute-collector'
22
+ volumes :
23
+ - .:/app:delegated
24
+ - ~/.composer:/root/.composer:delegated
25
+ working_dir : /app
15
26
app82 :
16
27
build :
17
28
context : .
Original file line number Diff line number Diff line change @@ -22,9 +22,7 @@ public static function render(TransientCollection $collector): string
22
22
23
23
// attributes.php @generated by https://github.com/olvlvl/composer-attribute-collector
24
24
25
- namespace olvlvl\ComposerAttributeCollector;
26
-
27
- Attributes::with(fn () => new Collection(
25
+ \olvlvl\ComposerAttributeCollector\Attributes::with(fn () => new \olvlvl\ComposerAttributeCollector\Collection(
28
26
targetClasses: $ targetClassesCode,
29
27
targetMethods: $ targetMethodsCode,
30
28
targetProperties: $ targetPropertiesCode,
You can’t perform that action at this time.
0 commit comments