-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "sciactive/hookphp",
"description": "Method hooking in PHP.",
"version": "2.1.0",
"time": "2019-12-28",
"type": "library",
"keywords": [
"method hooking",
"hook",
"interception"
],
"homepage": "http://hookphp.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "Hunter Perrin",
"email": "hunter@sciactive.com",
"homepage": "https://github.com/hperrin",
"role": "Developer"
}
],
"require": {
"php": "~7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1"
},
"support": {
"issues": "https://github.com/sciactive/hookphp/issues",
"wiki": "https://github.com/sciactive/hookphp/wiki",
"source": "https://github.com/sciactive/hookphp"
},
"archive": {
"exclude": ["testing"]
},
"autoload": {
"psr-0": {
"SciActive\\": "src/"
},
"psr-4": {
"SciActive\\": "src/"
}
}
}