-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.93 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "inpsyde/composer-assets-compiler",
"description": "Composer plugin that installs and compile frontend dependencies for installed Composer packages based on configuration.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Syde GmbH",
"homepage": "https://syde.com/",
"email": "[email protected]",
"role": "Company"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">= 7.2 < 8.3",
"ext-json": "*",
"composer-plugin-api": "^1 || ^2"
},
"autoload": {
"psr-4": {
"Inpsyde\\AssetsCompiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\AssetsCompiler\\Tests\\": ["tests/src/", "tests/unit/", "tests/functional/"]
}
},
"require-dev": {
"composer/composer": "^1.10.24 || ^2.5.5",
"phpunit/phpunit": "^8.5.33 || ^9.6.7",
"mockery/mockery": "^1.3.5 || ^1.4.4",
"inpsyde/php-coding-standards": "^1.0.0",
"vimeo/psalm": ">=4.30.0",
"mikey179/vfsstream": "^1.6.11"
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-cache --output-format=compact --find-unused-psalm-suppress",
"tests": "@php ./vendor/phpunit/phpunit/phpunit",
"qa": [
"@cs",
"@psalm",
"@tests"
]
},
"extra": {
"class": "Inpsyde\\AssetsCompiler\\Composer\\Plugin",
"branch-alias": {
"dev-master": "2.x-dev",
"dev-v1.x": "1.x-dev",
"dev-v2.x": "2.x-dev",
"dev-v3.x": "3.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/*": true,
"inpsyde/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}