File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Composer Require Check
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ build :
14+
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Validate composer.json and composer.lock
21+ run : composer validate --strict
22+
23+ - name : Cache Composer packages
24+ id : composer-cache
25+ uses : actions/cache@v3
26+ with :
27+ path : vendor
28+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
29+ restore-keys : |
30+ ${{ runner.os }}-php-
31+
32+ - name : Install dependencies
33+ run : composer install --prefer-dist --no-progress
34+
35+ - name : ComposerRequireChecker
36+ uses : docker://webfactory/composer-require-checker:4.5.0
Original file line number Diff line number Diff line change 55 "require" : {
66 "php" : " ^8.1" ,
77 "friendsofphp/proxy-manager-lts" : " ^1.0.18" ,
8+ "symfony/config" : " ^6.4" ,
9+ "symfony/dependency-injection" : " ^6.4" ,
10+ "symfony/yaml" : " ^6.4 || ^7.1" ,
811 "symfony/console" : " ^6.4" ,
912 "symfony/expression-language" : " ^6.4" ,
1013 "symfony/framework-bundle" : " ^6.4" ,
1114 "symfony/stopwatch" : " ^6.4" ,
12- "symfony/yaml" : " ^6.4 || ^7.1" ,
1315 "tourze/arrayable" : " 0.0.*"
1416 },
1517 "autoload" : {
You can’t perform that action at this time.
0 commit comments