-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
52 lines (52 loc) · 1.34 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
{
"name": "soyuka/pmu",
"description": "PHP Mono Repository Utility",
"type": "composer-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Pmu\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pmu\\Tests\\Functional\\": "tests/functional/"
}
},
"authors": [
{
"name": "soyuka",
"email": "[email protected]"
}
],
"require": {
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.7",
"symfony/var-dumper": "^7.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.50",
"phpunit/phpunit": "^11.0",
"symfony/thanks": "^1.4"
},
"extra": {
"class": "Pmu\\Composer\\Plugin",
"plugin-optional": true,
"thanks": {
"name": "soyuka/pmu",
"url": "https://github.com/soyuka/pmu"
}
},
"scripts": {
"functional": "./vendor/bin/phpunit --bootstrap ./vendor/autoload.php tests/functional",
"unit": "/vendor/bin/phpunit --bootstrap ./vendor/autoload.php tests/unit",
"cs": "./vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse"
},
"config": {
"allow-plugins": {
"symfony/thanks": true
}
}
}