Skip to content

Commit

Permalink
+ add files
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieu2607 committed Dec 7, 2023
1 parent 5e63bb2 commit ae5534b
Show file tree
Hide file tree
Showing 38 changed files with 13,269 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Review Bundle code review

on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.idea/
vendor
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 2.5.0 (07/12/2023)

+ Lauch bundle
47 changes: 47 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name" : "pixelopen/sulu-reviewbundle",
"type": "sulu-bundle",
"description": "Review bundle (Google My Business Review) for Sulu",
"keywords": [
"sulu",
"suluCms"
],
"homepage": "https://github.com/Pixel-Open/sulu-reviewbundle",
"license": "MIT",
"authors": [
{
"name": "Pixel Open"
}
],
"require": {
"php": "^8.0",
"sulu/sulu": "^2.5",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.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\\ReviewBundle\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}
Loading

0 comments on commit ae5534b

Please sign in to comment.