-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de793ab
commit 965a3dd
Showing
96 changed files
with
21,674 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Git | ||
.gitattributes export-ignore | ||
.github/ export-ignore | ||
.gitignore export-ignore | ||
|
||
# Development files | ||
ecs.php export-ignore | ||
composer.lock export-ignore | ||
img/ export-ignore | ||
vendor/ export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: GDPR Bundle code review | ||
|
||
on: | ||
push: | ||
branches: [ "master", "develop" ] | ||
pull_request: | ||
branches: [ "master", "develop" ] | ||
|
||
jobs: | ||
review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP, with composer and extensions | ||
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php | ||
with: | ||
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, zip | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
run: composer install --no-interaction --no-progress | ||
|
||
- name: Check for vulnerabilities | ||
uses: symfonycorp/security-checker-action@v4 | ||
|
||
- name: Run Easy Coding Standard | ||
run: vendor/bin/ecs check src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.idea/ | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
## 1.0.0 (28/05/2024) | ||
|
||
+ Launch bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name" : "pixelopen/sulu-gdprbundle", | ||
"type": "sulu-bundle", | ||
"description": "GDPR tools for Sulu", | ||
"keywords": [ | ||
"sulu", | ||
"sulu-bundle" | ||
], | ||
"homepage": "https://github.com/Pixel-Open/sulu-gdprbundle", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Pixel Open" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0", | ||
"sulu/sulu": "^2.4", | ||
"symfony/config": "^5.0 || ^6.0", | ||
"symfony/dependency-injection": "^5.0 || ^6.0", | ||
"symfony/framework-bundle": "^5.0 || ^6.0", | ||
"symfony/http-foundation": "^5.0 || ^6.0", | ||
"symfony/http-kernel": "^5.0 || ^6.0" | ||
}, | ||
"require-dev": { | ||
"dantleech/phpcr-migrations-bundle": "^1.3", | ||
"jackalope/jackalope-doctrine-dbal": "^1.3.2", | ||
"phpstan/extension-installer": "^1.2", | ||
"phpstan/phpstan": "^1.9", | ||
"phpstan/phpstan-symfony": "^1.2", | ||
"symplify/easy-coding-standard": "^11.1" | ||
}, | ||
"scripts": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Pixel\\GDPRBundle\\": "src" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"php-http/discovery": true, | ||
"phpstan/extension-installer": true | ||
} | ||
} | ||
} |
Oops, something went wrong.