-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 924 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "aura/autoload",
"type": "library",
"description": "Provides a PSR-4 compliant autoloader implementation.",
"keywords": [
"PSR-4",
"autoload",
"autoloader",
"SPL autoloader",
"class loader"
],
"homepage": "https://github.com/auraphp/Aura.Autoload",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Autoload Contributors",
"homepage": "https://github.com/auraphp/Aura.Autoload/contributors"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Aura\\Autoload\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7.21 || ^6.4.4 || ^7.5 || ^8.5 || ^9.6 || ^11.0",
"yoast/phpunit-polyfills": "^2.0.5 || ^3.1.2 || ^4.0.0"
},
"extra": {
"aura": {
"type": "library"
}
}
}