-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 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
{
"name": "riley19280/miro-clipboard",
"description": "Interact with the miro clipboard",
"type": "library",
"require": {
"illuminate/conditionable": "^10|^11",
"illuminate/macroable": "^10|^11"
},
"require-dev": {
"laravel/pint": "^1.0",
"spatie/invade": "^2.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7|^8",
"pestphp/pest": "^2.9",
"pestphp/pest-plugin-arch": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan": "^1.10"
},
"license": "MIT",
"autoload": {
"psr-4": {
"MiroClipboard\\": "src/"
},
"files": [
"src/Utility/Utility.php",
"src/Utility/MiroUtility.php"
]
},
"autoload-dev": {
"psr-4": {
"MiroClipboard\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"test": "./vendor/bin/pest",
"test:coverage": "./vendor/bin/pest --coverage --min=100",
"style": "./vendor/bin/pint"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}