Skip to content

Commit 313d7b2

Browse files
committed
restore skipped checks
1 parent 4a05dde commit 313d7b2

File tree

2 files changed

+31
-30
lines changed

2 files changed

+31
-30
lines changed

.github/workflows/php.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -52,23 +52,23 @@ jobs:
5252
--no-progress
5353
.
5454
# # 01.quality.php.validate.dependencies-file.yml
55-
# validate-dependencies-file:
56-
# name: Validate dependencies file
57-
# runs-on: ubuntu-24.04
58-
# steps:
59-
# - uses: actions/checkout@v4
60-
# - run: >-
61-
# composer validate
62-
# --check-lock
63-
# --no-plugins
64-
# --no-scripts
65-
# --strict
55+
validate-dependencies-file:
56+
name: Validate dependencies file
57+
runs-on: ubuntu-24.04
58+
steps:
59+
- uses: actions/checkout@v4
60+
- run: >-
61+
composer validate
62+
--check-lock
63+
--no-plugins
64+
--no-scripts
65+
--strict
6666
# 02.test.php.test-unit.yml
6767
php-unittest:
6868
name: PHP Unit Tests
6969
needs:
7070
- lint-php-syntax
71-
# - validate-dependencies-file
71+
- validate-dependencies-file
7272
runs-on: ubuntu-24.04
7373
strategy:
7474
fail-fast: false
@@ -90,23 +90,23 @@ jobs:
9090
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
9191
- run: vendor/bin/phpunit --configuration tests/phpunit/phpunit.xml
9292
# 03.quality.php.scan.dependencies-vulnerabilities.yml
93-
# scan-dependencies-vulnerabilities:
94-
# name: Scan Dependencies Vulnerabilities
95-
# needs:
96-
# - validate-dependencies-file
97-
# runs-on: ubuntu-24.04
98-
# steps:
99-
# - uses: actions/checkout@v4
100-
# - name: Install and Cache Composer dependencies
101-
# uses: "ramsey/composer-install@v2"
102-
# env:
103-
# COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
104-
# - run: >-
105-
# composer audit
106-
# --abandoned=report
107-
# --no-dev
108-
# --no-plugins
109-
# --no-scripts
93+
scan-dependencies-vulnerabilities:
94+
name: Scan Dependencies Vulnerabilities
95+
needs:
96+
- validate-dependencies-file
97+
runs-on: ubuntu-24.04
98+
steps:
99+
- uses: actions/checkout@v4
100+
- name: Install and Cache Composer dependencies
101+
uses: "ramsey/composer-install@v2"
102+
env:
103+
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
104+
- run: >-
105+
composer audit
106+
--abandoned=report
107+
--no-dev
108+
--no-plugins
109+
--no-scripts
110110
# 03.quality.php.lint-version-compatibility.yml
111111
php-check-version-compatibility:
112112
name: PHP Version Compatibility

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "pdsinterop/php-solid",
3+
"description": "Multi-user Solid Server for PHP",
34
"type": "project",
45
"license": "MIT",
56
"autoload": {
@@ -17,7 +18,7 @@
1718
"pdsinterop/solid-auth": "v0.13.0",
1819
"pdsinterop/solid-crud": "v0.8.1",
1920
"phpmailer/phpmailer": "^6.10",
20-
"sweetrdf/easyrdf": "v1.15",
21+
"sweetrdf/easyrdf": "~1.15.0",
2122
"phpseclib/bcmath_compat": "^2.0",
2223
"phrity/websocket": "^3.5"
2324
},

0 commit comments

Comments
 (0)