-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 954 Bytes
/
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
{
"name": "dstuecken/php7ify",
"type": "library",
"description": "php7ify is a project that brings new php7 classes and exceptions to php 5.x.",
"keywords": [
"php7",
"php 7",
"php 7.0",
"php 7 exceptions",
"exceptions",
"throwable",
"errorexception",
"error"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^4.8.36"
},
"require": {
"php": ">=5.3.0"
},
"license": "MIT",
"authors": [
{
"name": "dstuecken",
"email": "dstuecken@me.com"
}
],
"autoload": {
"classmap": [
"src/",
"src/Exceptions/"
],
"files": [
"src/Functions/preg_replace_callback_array.php",
"src/Functions/error_clear_last.php",
"src/Functions/intdiv.php"
],
"psr-4": {
"dstuecken\\Php7ify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"php7ifytest\\": "tests/php7ify/"
}
}
}