File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
10- php_version : [7.3, 7.4, 8.0 ]
10+ php_version : ["7.4", "8.0", "8.1" ]
1111 composer_flags : ["", "--prefer-lowest"]
1212
1313 steps :
Original file line number Diff line number Diff line change 11{
22 "name" : " rareloop/primer-core" ,
33 "require" : {
4- "php" : " >=7.3 " ,
4+ "php" : " >=7.4 " ,
55 "symfony/finder" : " ^4.2.5|^5.0" ,
66 "twig/twig" : " ^2.6" ,
7- "tightenco/collect " : " ^5.6 .0" ,
7+ "illuminate/collections " : " ^8.53.1||^9.0 .0" ,
88 "league/commonmark" : " ^1.5" ,
99 "mnapoli/front-yaml" : " ^1.6"
1010 },
Original file line number Diff line number Diff line change 22
33namespace Rareloop \Primer \Contracts ;
44
5- use Tightenco \ Collect \Contracts \Support \Arrayable as CollectionArrayable ;
5+ use Illuminate \Contracts \Support \Arrayable as CollectionArrayable ;
66
77interface Arrayable extends CollectionArrayable
88{
9-
109}
Original file line number Diff line number Diff line change 22
33namespace Rareloop \Primer ;
44
5+ use Rareloop \Primer \Pattern ;
6+ use Illuminate \Support \Collection ;
7+ use Symfony \Component \Finder \Finder ;
58use Rareloop \Primer \Contracts \DataParser ;
69use Rareloop \Primer \Contracts \PatternProvider ;
710use Rareloop \Primer \Contracts \TemplateProvider ;
811use Rareloop \Primer \Exceptions \PatternNotFoundException ;
9- use Rareloop \Primer \Pattern ;
10- use Symfony \Component \Finder \Finder ;
11- use Tightenco \Collect \Support \Collection ;
1212
1313class FileSystemPatternProvider implements PatternProvider, TemplateProvider
1414{
You can’t perform that action at this time.
0 commit comments