-
Notifications
You must be signed in to change notification settings - Fork 1
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
6700dbf
commit 5aa585f
Showing
21 changed files
with
260 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
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,63 @@ | ||
{ | ||
"name": "ibexa/notifications", | ||
"license": "proprietary", | ||
"type": "ibexa-bundle", | ||
"keywords": [ | ||
"ibexa-dxp" | ||
], | ||
"repositories": [ | ||
{ "type": "composer", "url": "https://updates.ibexa.co" } | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"ibexa/core": "^4.5.x-dev", | ||
"symfony/config": "^5.4", | ||
"symfony/dependency-injection": "^5.4", | ||
"symfony/event-dispatcher": "^5.4", | ||
"symfony/event-dispatcher-contracts": "^2.2", | ||
This comment has been minimized.
Sorry, something went wrong. |
||
"symfony/http-foundation": "^5.4", | ||
"symfony/http-kernel": "^5.4", | ||
"symfony/yaml": "^5.4" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9", | ||
"ibexa/code-style": "^1.1", | ||
"phpstan/phpstan": "^1.10", | ||
"phpstan/phpstan-phpunit": "^1.3", | ||
"phpstan/phpstan-symfony": "^1.3", | ||
"qossmic/deptrac-shim": "^0.24.0 || ^1.0.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Ibexa\\Bundle\\Notifications\\": "src/bundle/", | ||
"Ibexa\\Contracts\\Notifications\\": "src/contracts/", | ||
"Ibexa\\Notifications\\": "src/lib/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Ibexa\\Tests\\Bundle\\Notifications\\": "tests/bundle/", | ||
"Ibexa\\Tests\\Integration\\Notifications\\": "tests/integration/", | ||
"Ibexa\\Tests\\Notifications\\": "tests/lib/" | ||
} | ||
}, | ||
"scripts": { | ||
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots", | ||
"check-cs": "@fix-cs --dry-run", | ||
"test": "phpunit -c phpunit.xml.dist", | ||
"phpstan": "phpstan analyse -c phpstan.neon", | ||
"deptrac": "php vendor/bin/deptrac analyse" | ||
}, | ||
"scripts-descriptions": { | ||
"fix-cs": "Automatically fixes code style in all files", | ||
"check-cs": "Run code style checker for all files", | ||
"test": "Run automatic tests", | ||
"phpstan": "Run static code analysis", | ||
"deptrac": "Run Deptrac architecture testing" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-main": "4.5.x-dev" | ||
} | ||
} | ||
} |
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,26 @@ | ||
deptrac: | ||
paths: | ||
- ./src | ||
layers: | ||
- name: Bundle | ||
collectors: | ||
- type: directory | ||
value: bundle/.* | ||
- name: Contracts | ||
collectors: | ||
- type: directory | ||
value: contracts/.* | ||
- name: Library | ||
collectors: | ||
- type: directory | ||
value: lib/.* | ||
ruleset: | ||
Bundle: | ||
- Bundle | ||
- Contracts | ||
- Library | ||
Contracts: | ||
- Contracts | ||
Library: | ||
- Contracts | ||
- Library |
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,16 @@ | ||
{ | ||
"name": "notifications", | ||
"repository": "[email protected]:ibexa/notifications.git", | ||
"private": true, | ||
"prettier": "eslint-config-ibexa/prettier", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"eslint-config-ibexa": "https://github.com/ibexa/eslint-config-ibexa.git#v1.0.0" | ||
}, | ||
"scripts": { | ||
"test": "yarn prettier-test && yarn eslint-test", | ||
"fix": "yarn prettier-test --write && yarn eslint-test --fix", | ||
"eslint-test": "eslint \"./src/bundle/Resources/**/*.js\" \"./src/bundle/ui-dev/**/*.js\"", | ||
"prettier-test": "yarn prettier \"./src/bundle/Resources/**/*.{js,scss}\" \"./src/bundle/ui-dev/**/*.js\" --check" | ||
} | ||
} |
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,9 @@ | ||
includes: | ||
- vendor/phpstan/phpstan-phpunit/extension.neon | ||
- vendor/phpstan/phpstan-symfony/extension.neon | ||
|
||
parameters: | ||
level: 8 | ||
paths: | ||
- src | ||
- tests |
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,23 @@ | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
bootstrap="vendor/autoload.php" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
failOnWarning="true" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="bundle"> | ||
<directory>tests/bundle</directory> | ||
</testsuite> | ||
<testsuite name="integration"> | ||
<directory>tests/integration</directory> | ||
</testsuite> | ||
<testsuite name="lib"> | ||
<directory>tests/lib</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
Oops, something went wrong.
Can we get this bumped to ^3.0?
Why was 2.2 selected?
Other packages like vich upload bundle conflict with such a low version.