-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
33 lines (33 loc) · 1013 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
{
"name": "aura/marshal",
"type": "aura-package",
"description": "The Aura Marshal package is a data-object marshalling tool; it takes results from data sources and marshals those result sets into domain model objects of your own design, preserving data relationships along the way.",
"keywords": [ "data", "data mapper", "data marshal", "data marshalling", "data object" ],
"homepage": "http://auraphp.github.com/Aura.Marshal",
"license": "MIT",
"authors": [
{
"name": "Aura Contributors",
"homepage": "https://github.com/auraphp/Aura.Marshal/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0.0"
},
"autoload": {
"psr-4": {
"Aura\\Marshal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aura\\Marshal\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}