-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.28 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": "loophp/launcher",
"type": "library",
"description": "Open a file or a resource with the default OS application.",
"keywords": [
"launcher",
"xdg-open",
"default-application"
],
"license": "MIT",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"require": {
"php": ">= 7.1.3",
"drupol/phposinfo": "^1.6",
"symfony/process": "^4.3 || ^4.4 || ^5 || ^6"
},
"require-dev": {
"drupol/php-conventions": "^2.0.2 || ^3.0.0 || ^5.0.0 || ^6.0.0",
"drupol/phpspec-annotation": "^1.2.0",
"drupol/phpspec-requires": "^1.1",
"friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.0.0",
"friends-of-phpspec/phpspec-requires": "^1.1",
"phpspec/phpspec": "^7.0",
"phptaskman/changelog": "^1.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"loophp\\launcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"loophp\\launcher\\tests\\": "tests/src/"
}
},
"scripts": {
"grumphp": "./vendor/bin/grumphp run",
"infection": "./vendor/bin/infection run -j 10"
}
}