-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
40 lines (40 loc) · 1.11 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
{
"name": "emacs-php/phpactor-el",
"description": "GNU Emacs interface to Phpactor",
"type": "project",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "USAMI Kenta",
"email": "[email protected]",
"homepage": "https://tadsan.github.io/",
"role": "Developer"
}
],
"homepage": "https://github.com/emacs-php/phpactor.el",
"autoload-dev": {
"files": ["tests/src/functions.php"],
"psr-4": {"EmacsPHP\\Phpactor\\Sample\\": "tests/src/"}
},
"require": {
"phpactor/phpactor": "dev-master#216c1af84ccfb4cfca5066e37278e8c718d6de02"
},
"config": {
"classmap-authoritative": true,
"discard-changes": true,
"optimize-autoloader": true,
"preferred-install": {
"phpactor/*": "source",
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}