-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 963 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
{
"name": "prod3v3loper/php-auto-autoloader",
"type": "library",
"description": "Need any more, no matter where you have a master in your root, the autoloader will find it.",
"keywords": [
"autoloader"
],
"homepage": "https://www.tnado.com/open-source-projects-by-prod3v3loper/",
"license": "MIT",
"repositories": [
{
"type": "git",
"url": "https://github.com/prod3v3loper/php-auto-autoloader.git"
}
],
"authors": [
{
"name": "prod3v3loper",
"homepage": "https://www.prod3v3loper.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Aautoloder\\": "autoload/src"
}
},
"autoload-dev": {
"psr-4": {
"Aautoloder\\Test\\": "tests/"
}
},
"require": {
"php": ">=5.1.2"
},
"require-dev": {
"phpunit/phpunit": ">=8"
}
}