|
1 | 1 | { |
2 | | - "name": "webkernel/composer-merger", |
3 | | - "description": "Composer plugin to merge multiple composer.json files — Webkernel edition with bundled core dependencies", |
4 | | - "type": "composer-plugin", |
5 | | - "license": "EPL-2.0", |
6 | | - "authors": [ |
7 | | - { |
8 | | - "name": "Bryan Davis", |
9 | | - "email": "bd808@wikimedia.org" |
10 | | - }, |
11 | | - { |
12 | | - "name": "Numerimondes", |
13 | | - "email": "webkernel@numerimondes.com" |
14 | | - } |
15 | | - ], |
16 | | - "minimum-stability": "dev", |
17 | | - "prefer-stable": true, |
18 | | - "keywords": [ |
19 | | - "webkernel", |
20 | | - "composer", |
21 | | - "merge", |
22 | | - "dependencies", |
23 | | - "bundle", |
24 | | - "laravel", |
25 | | - "filament", |
26 | | - "ecosystem" |
27 | | - ], |
28 | | - "require": { |
29 | | - "php": "^8.4", |
30 | | - "composer-plugin-api": "^2.0", |
31 | | - "calebporzio/sushi": "^2.5", |
32 | | - "filament/filament": "^5.0", |
33 | | - "jeremykendall/php-domain-parser": "^6.4", |
34 | | - "laravel/framework": "^12.0", |
35 | | - "laravel/octane": "^2.12", |
36 | | - "laravel/prompts": "^0.3.8", |
37 | | - "laravel/sanctum": "^4.0", |
38 | | - "laravel/tinker": "^2.10.1", |
39 | | - "nikic/php-parser": "^5.7" |
40 | | - }, |
41 | | - "require-dev": { |
42 | | - "ext-json": "*", |
43 | | - "composer/composer": "^2.0", |
44 | | - "barryvdh/laravel-ide-helper": "^3.6", |
45 | | - "fakerphp/faker": "^1.23", |
46 | | - "fruitcake/laravel-debugbar": "^4.0", |
47 | | - "laravel/pail": "^1.2.2", |
48 | | - "laravel/pint": "^1.24", |
49 | | - "laravel/sail": "^1.41", |
50 | | - "mockery/mockery": "^1.6", |
51 | | - "nunomaduro/collision": "^8.6", |
52 | | - "pestphp/pest": "^4.1.0", |
53 | | - "pestphp/pest-plugin-laravel": "^4.0", |
54 | | - "php-parallel-lint/php-parallel-lint": "~1.3.1", |
55 | | - "phpspec/prophecy-phpunit": "~2.0.1", |
56 | | - "phpunit/phpunit": "^11.0", |
57 | | - "psr/log": "^3.0", |
58 | | - "squizlabs/php_codesniffer": "~3.7.1" |
59 | | - }, |
60 | | - "autoload": { |
61 | | - "psr-4": { |
62 | | - "Wikimedia\\Composer\\Merge\\V2\\": "src/" |
63 | | - } |
64 | | - }, |
65 | | - "extra": { |
66 | | - "branch-alias": { |
67 | | - "dev-master": "2.x-dev" |
68 | | - }, |
69 | | - "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin" |
70 | | - }, |
71 | | - "config": { |
72 | | - "optimize-autoloader": true, |
73 | | - "preferred-install": "dist", |
74 | | - "sort-packages": true, |
75 | | - "allow-plugins": { |
76 | | - "pestphp/pest-plugin": true, |
77 | | - "php-http/discovery": true |
78 | | - }, |
79 | | - "platform": { |
80 | | - "php": "8.4.0" |
81 | | - } |
82 | | - }, |
83 | | - "scripts": { |
84 | | - "test": [ |
85 | | - "composer validate --no-interaction", |
86 | | - "parallel-lint src tests", |
87 | | - "@phpunit", |
88 | | - "@phpcs" |
89 | | - ], |
90 | | - "phpunit": "phpunit", |
91 | | - "phpcs": "phpcs --encoding=utf-8 --standard=PSR2 --extensions=php src/* tests/phpunit/*", |
92 | | - "coverage": [ |
93 | | - "phpunit --log-junit=reports/unitreport.xml --coverage-text --coverage-html=reports/coverage --coverage-clover=reports/coverage.xml", |
94 | | - "phpcs --encoding=utf-8 --standard=PSR2 --report-checkstyle=reports/checkstyle-phpcs.xml --report-full --extensions=php src/* tests/phpunit/*" |
95 | | - ], |
96 | | - "phan": "phan -d . --long-progress-bar --allow-polyfill-parser" |
97 | | - } |
| 2 | + "name": "webkernel/composer-merger", |
| 3 | + "description": "Composer plugin to merge multiple composer.json files — Webkernel edition with bundled core dependencies", |
| 4 | + "type": "composer-plugin", |
| 5 | + "license": "EPL-2.0", |
| 6 | + "authors": [ |
| 7 | + { |
| 8 | + "name": "Bryan Davis", |
| 9 | + "email": "bd808@wikimedia.org" |
| 10 | + }, |
| 11 | + { |
| 12 | + "name": "Numerimondes", |
| 13 | + "email": "webkernel@numerimondes.com" |
| 14 | + } |
| 15 | + ], |
| 16 | + "minimum-stability": "dev", |
| 17 | + "prefer-stable": true, |
| 18 | + "keywords": [ |
| 19 | + "webkernel", |
| 20 | + "composer", |
| 21 | + "merge", |
| 22 | + "dependencies", |
| 23 | + "bundle", |
| 24 | + "laravel", |
| 25 | + "filament", |
| 26 | + "ecosystem" |
| 27 | + ], |
| 28 | + "require": { |
| 29 | + "php": "^8.4", |
| 30 | + "composer-plugin-api": "^2.0", |
| 31 | + "calebporzio/sushi": "^2.5", |
| 32 | + "filament/filament": "^5.0", |
| 33 | + "jeremykendall/php-domain-parser": "^6.4", |
| 34 | + "laravel/framework": "^12.0", |
| 35 | + "laravel/octane": "^2.12", |
| 36 | + "laravel/prompts": "^0.3.8", |
| 37 | + "laravel/sanctum": "^4.0", |
| 38 | + "laravel/tinker": "^2.10.1", |
| 39 | + "livewire/blaze": "^1.0", |
| 40 | + "nikic/php-parser": "^5.7" |
| 41 | + }, |
| 42 | + "require-dev": { |
| 43 | + "ext-json": "*", |
| 44 | + "composer/composer": "^2.0", |
| 45 | + "barryvdh/laravel-ide-helper": "^3.6", |
| 46 | + "fakerphp/faker": "^1.23", |
| 47 | + "fruitcake/laravel-debugbar": "^4.0", |
| 48 | + "laravel/pail": "^1.2.2", |
| 49 | + "laravel/pint": "^1.24", |
| 50 | + "laravel/sail": "^1.41", |
| 51 | + "mockery/mockery": "^1.6", |
| 52 | + "nunomaduro/collision": "^8.6", |
| 53 | + "pestphp/pest": "^4.4", |
| 54 | + "pestphp/pest-plugin-laravel": "^4.0", |
| 55 | + "php-parallel-lint/php-parallel-lint": "~1.3.1", |
| 56 | + "phpunit/phpunit": "^12.5", |
| 57 | + "psr/log": "^3.0", |
| 58 | + "squizlabs/php_codesniffer": "~3.7.1" |
| 59 | + }, |
| 60 | + "autoload": { |
| 61 | + "psr-4": { |
| 62 | + "Wikimedia\\Composer\\Merge\\V2\\": "src/" |
| 63 | + } |
| 64 | + }, |
| 65 | + "extra": { |
| 66 | + "branch-alias": { |
| 67 | + "dev-master": "2.x-dev" |
| 68 | + }, |
| 69 | + "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin" |
| 70 | + }, |
| 71 | + "config": { |
| 72 | + "optimize-autoloader": true, |
| 73 | + "preferred-install": "dist", |
| 74 | + "sort-packages": true, |
| 75 | + "allow-plugins": { |
| 76 | + "pestphp/pest-plugin": true, |
| 77 | + "php-http/discovery": true |
| 78 | + }, |
| 79 | + "platform": { |
| 80 | + "php": "8.4.0" |
| 81 | + } |
| 82 | + }, |
| 83 | + "scripts": { |
| 84 | + "test": [ |
| 85 | + "composer validate --no-interaction", |
| 86 | + "parallel-lint src tests", |
| 87 | + "@phpunit", |
| 88 | + "@phpcs" |
| 89 | + ], |
| 90 | + "phpunit": "phpunit", |
| 91 | + "phpcs": "phpcs --encoding=utf-8 --standard=PSR2 --extensions=php src/* tests/phpunit/*", |
| 92 | + "coverage": [ |
| 93 | + "phpunit --log-junit=reports/unitreport.xml --coverage-text --coverage-html=reports/coverage --coverage-clover=reports/coverage.xml", |
| 94 | + "phpcs --encoding=utf-8 --standard=PSR2 --report-checkstyle=reports/checkstyle-phpcs.xml --report-full --extensions=php src/* tests/phpunit/*" |
| 95 | + ], |
| 96 | + "phan": "phan -d . --long-progress-bar --allow-polyfill-parser" |
| 97 | + } |
98 | 98 | } |
0 commit comments