File tree 5 files changed +61
-3
lines changed
5 files changed +61
-3
lines changed Original file line number Diff line number Diff line change 22
22
needs : compute_matrix
23
23
uses : graycoreio/github-actions-magento2/.github/workflows/integration.yaml@main
24
24
with :
25
- package_name : graycore/magento2-cors
25
+ package_name : graycore/magento2-graphql-introspection-cache
26
26
matrix : ${{ needs.compute_matrix.outputs.matrix }}
27
27
test_command : ../../../vendor/bin/phpunit ../../../vendor/graycore/magento2-graphql-introspection-cache/Test/Integration
28
28
secrets :
Original file line number Diff line number Diff line change
1
+ vendor /
2
+ composer.lock
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Graycore \GraphQlIntrospectionCache \Test \Integration ;
4
+
5
+ use PHPUnit \Framework \TestCase ;
6
+
7
+ class SmokeTest extends TestCase
8
+ {
9
+ public function testItworks ()
10
+ {
11
+ $ this ->assertEquals (true , true );
12
+ }
13
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Graycore \GraphQlIntrospectionCache \Test \Unit ;
4
+
5
+ use PHPUnit \Framework \TestCase ;
6
+
7
+ class SmokeTest extends TestCase
8
+ {
9
+ public function testItworks ()
10
+ {
11
+ $ this ->assertEquals (true , true );
12
+ }
13
+ }
Original file line number Diff line number Diff line change 2
2
"name" : " graycore/magento2-graphql-introspection-cache" ,
3
3
"type" : " magento2-module" ,
4
4
"require" : {
5
- "magento/framework" : " *" ,
6
- "php" : " >=7.4"
5
+ "php" : " >=7.4" ,
6
+ "magento/framework" : " ^102.0 || ^103.0" ,
7
+ "magento/module-catalog" : " ^103.0 || ^104.0" ,
8
+ "magento/module-eav" : " ^102.0" ,
9
+ "magento/module-graph-ql" : " ^100.0.0" ,
10
+ "magento/module-graph-ql-cache" : " ^100.0.0"
11
+ },
12
+ "require-dev" : {
13
+ "magento/magento-coding-standard" : " >=6.0" ,
14
+ "phpunit/phpunit" : " ^8.0 || ^9.0" ,
15
+ "squizlabs/php_codesniffer" : " ^3.0"
7
16
},
8
17
"license" : [
9
18
" MIT"
18
27
},
19
28
"scripts" : {
20
29
"unit-test" : " vendor/bin/phpunit ./Test/Unit"
30
+ },
31
+ "archive" : {
32
+ "exclude" : [
33
+ " /docs" ,
34
+ " /Test" ,
35
+ " README.md"
36
+ ]
37
+ },
38
+ "repositories" : {
39
+ "0" : {
40
+ "type" : " composer" ,
41
+ "url" : " https://repo.magento.com/"
42
+ }
43
+ },
44
+ "config" : {
45
+ "preferred-install" : " dist" ,
46
+ "sort-packages" : true ,
47
+ "allow-plugins" : {
48
+ "magento/composer-dependency-version-audit-plugin" : true ,
49
+ "magento/magento-composer-installer" : false
50
+ }
21
51
}
22
52
}
You can’t perform that action at this time.
0 commit comments