This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
{
"name": "atk4/laravel-ad",
"description": "Extension for Laravel to natively integrate with Agile Data (http://git.io/ad)",
"license": "MIT",
"keywords": [ "agile data", "laravel", "query", "builder", "orm", "nosql", "sql", "data mapper", "database" ],
"homepage": "https://github.com/atk4/laravel-ad",
"authors": [
{
"name": "Romans Malinovskis",
"email": "[email protected]",
"homepage": "https://nearly.guru/"
},
{
"name": "FoxxMD",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"atk4/data": "~1.1",
"illuminate/auth": ">=5.1",
"illuminate/console": ">=5.1",
"illuminate/container": ">=5.1",
"illuminate/contracts": ">=5.1",
"illuminate/support": ">=5.1",
"illuminate/validation": ">=5.1",
"foxxmd/php-utilities": "dev-master",
"orchestra/testbench": "~3.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"atk4/schema": "*",
"codeclimate/php-test-reporter": "*",
"mockery/mockery": "~0.9",
"itsgoingd/clockwork": "~1.9",
"illuminate/log": ">=5.1"
},
"autoload": {
"psr-4": {
"atk4\\LaravelAD\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
},
"suggest": {
"atk4/ui": "Lightweight UI Server-side Object library",
"fzaninotto/faker": "Required to use the entity factory builder (~1.4).",
"atk4/laravel-ad-extensions": "Integrate various Agile Data extensions into Laravel (audit, migrations, files, etc)"
}
}