|
1 | 1 | {
|
2 |
| - "name": "ibexa/core-persistence", |
3 |
| - "license": "(GPL-2.0-only or proprietary)", |
4 |
| - "type": "ibexa-bundle", |
5 |
| - "keywords": [ |
6 |
| - "ibexa-dxp" |
7 |
| - ], |
8 |
| - "require": { |
9 |
| - "php": "^7.4 || ^8.0", |
10 |
| - "ibexa/core": "~4.6.x-dev", |
11 |
| - "ibexa/doctrine-schema": "~4.6.x-dev", |
12 |
| - "symfony/config": "^5.4", |
13 |
| - "symfony/dependency-injection": "^5.4", |
14 |
| - "symfony/event-dispatcher": "^5.4", |
15 |
| - "symfony/http-foundation": "^5.4", |
16 |
| - "symfony/http-kernel": "^5.4", |
17 |
| - "symfony/yaml": "^5.4" |
18 |
| - }, |
19 |
| - "require-dev": { |
20 |
| - "dama/doctrine-test-bundle": "^6.7", |
21 |
| - "ibexa/code-style": "^1.1", |
22 |
| - "ibexa/test-core": "0.1.x-dev", |
23 |
| - "phpstan/phpstan": "^1.4", |
24 |
| - "phpstan/phpstan-phpunit": "^1.0", |
25 |
| - "phpunit/phpunit": "^9.0", |
26 |
| - "symfony/phpunit-bridge": "^5.4" |
27 |
| - }, |
28 |
| - "autoload": { |
29 |
| - "psr-4": { |
30 |
| - "Ibexa\\Bundle\\CorePersistence\\": "src/bundle/", |
31 |
| - "Ibexa\\Contracts\\CorePersistence\\": "src/contracts/", |
32 |
| - "Ibexa\\CorePersistence\\": "src/lib/" |
| 2 | + "name": "ibexa/core-persistence", |
| 3 | + "license": "(GPL-2.0-only or proprietary)", |
| 4 | + "type": "ibexa-bundle", |
| 5 | + "keywords": [ |
| 6 | + "ibexa-dxp" |
| 7 | + ], |
| 8 | + "require": { |
| 9 | + "php": "^7.4 || ^8.0", |
| 10 | + "ibexa/core": "~4.6.x-dev", |
| 11 | + "ibexa/doctrine-schema": "~4.6.x-dev", |
| 12 | + "symfony/config": "^5.4", |
| 13 | + "symfony/dependency-injection": "^5.4", |
| 14 | + "symfony/event-dispatcher": "^5.4", |
| 15 | + "symfony/http-foundation": "^5.4", |
| 16 | + "symfony/http-kernel": "^5.4", |
| 17 | + "symfony/yaml": "^5.4" |
| 18 | + }, |
| 19 | + "require-dev": { |
| 20 | + "dama/doctrine-test-bundle": "^6.7", |
| 21 | + "ibexa/code-style": "^1.1", |
| 22 | + "ibexa/test-core": "0.1.x-dev", |
| 23 | + "phpstan/phpstan": "^2.0", |
| 24 | + "phpstan/phpstan-phpunit": "^2.0", |
| 25 | + "phpunit/phpunit": "^9.0", |
| 26 | + "symfony/phpunit-bridge": "^5.4" |
| 27 | + }, |
| 28 | + "autoload": { |
| 29 | + "psr-4": { |
| 30 | + "Ibexa\\Bundle\\CorePersistence\\": "src/bundle/", |
| 31 | + "Ibexa\\Contracts\\CorePersistence\\": "src/contracts/", |
| 32 | + "Ibexa\\CorePersistence\\": "src/lib/" |
| 33 | + } |
| 34 | + }, |
| 35 | + "autoload-dev": { |
| 36 | + "psr-4": { |
| 37 | + "Ibexa\\Tests\\Bundle\\CorePersistence\\": "tests/bundle/", |
| 38 | + "Ibexa\\Tests\\Integration\\CorePersistence\\": "tests/integration/", |
| 39 | + "Ibexa\\Tests\\CorePersistence\\": "tests/lib/" |
| 40 | + } |
| 41 | + }, |
| 42 | + "scripts": { |
| 43 | + "fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots", |
| 44 | + "check-cs": "@fix-cs --dry-run", |
| 45 | + "test": "phpunit -c phpunit.xml.dist", |
| 46 | + "test-integration": "phpunit -c phpunit.integration.xml", |
| 47 | + "phpstan": "phpstan analyse -c phpstan.neon" |
| 48 | + }, |
| 49 | + "scripts-descriptions": { |
| 50 | + "fix-cs": "Automatically fixes code style in all files", |
| 51 | + "check-cs": "Run code style checker for all files", |
| 52 | + "test": "Run automatic tests", |
| 53 | + "phpstan": "Run static code analysis" |
| 54 | + }, |
| 55 | + "extra": { |
| 56 | + "branch-alias": { |
| 57 | + "dev-main": "4.6.x-dev" |
| 58 | + } |
| 59 | + }, |
| 60 | + "config": { |
| 61 | + "allow-plugins": false, |
| 62 | + "sort-packages": true |
33 | 63 | }
|
34 |
| - }, |
35 |
| - "autoload-dev": { |
36 |
| - "psr-4": { |
37 |
| - "Ibexa\\Tests\\Bundle\\CorePersistence\\": "tests/bundle/", |
38 |
| - "Ibexa\\Tests\\Integration\\CorePersistence\\": "tests/integration/", |
39 |
| - "Ibexa\\Tests\\CorePersistence\\": "tests/lib/" |
40 |
| - } |
41 |
| - }, |
42 |
| - "scripts": { |
43 |
| - "fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots", |
44 |
| - "check-cs": "@fix-cs --dry-run", |
45 |
| - "test": "phpunit -c phpunit.xml.dist", |
46 |
| - "test-integration": "phpunit -c phpunit.integration.xml", |
47 |
| - "phpstan": "phpstan analyse -c phpstan.neon" |
48 |
| - }, |
49 |
| - "scripts-descriptions": { |
50 |
| - "fix-cs": "Automatically fixes code style in all files", |
51 |
| - "check-cs": "Run code style checker for all files", |
52 |
| - "test": "Run automatic tests", |
53 |
| - "phpstan": "Run static code analysis" |
54 |
| - }, |
55 |
| - "extra": { |
56 |
| - "branch-alias": { |
57 |
| - "dev-main": "4.6.x-dev" |
58 |
| - } |
59 |
| - }, |
60 |
| - "config": { |
61 |
| - "allow-plugins": false, |
62 |
| - "sort-packages": true |
63 |
| - } |
64 | 64 | }
|
0 commit comments