forked from rickycheers/analogue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·63 lines (63 loc) · 1.65 KB
/
composer.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.65 KB
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
54
55
56
57
58
59
60
61
62
63
{
"name": "analogue/orm",
"description": "An intuitive Data Mapper ORM for PHP and Laravel",
"keywords": [
"orm",
"datamapper",
"laravel",
"entity",
"repository",
"mapper"
],
"homepage": "http://github.com/analogueorm/analogue",
"license": "MIT",
"authors": [
{
"name": "Rémi Collin",
"email": "rcollin2@gmail.com"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "~5.3.0",
"illuminate/events": "~5.3.0",
"illuminate/pagination": "~5.3.0",
"doctrine/instantiator": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"laravel/laravel": "~5.3.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*",
"analogue/factory": "~1.0.0"
},
"suggest": {
"analogue/laravel-auth": "Analogue's authentication driver for Laravel.",
"analogue/factory": "Create simple dummy entities for your tests",
"analogue/mongodb": "MongoDB driver for Analogue ORM"
},
"autoload": {
"psr-4": {
"Analogue\\ORM\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/AnalogueTestCase.php",
"tests/DomainTestCase.php"
],
"psr-4": {
"TestApp\\": "tests/src"
},
"files": [
"tests/helpers.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}