-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (38 loc) · 933 Bytes
/
composer.json
File metadata and controls
39 lines (38 loc) · 933 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
38
39
{
"name": "rocketorm/orm",
"description": "Rocket is a fast ORM for PHP",
"keywords": ["rocket", "php", "orm", "mysql", "mapping"],
"license": "MIT",
"authors": [
{
"name": "Sylvain Lorinet",
"email": "sylvain.lorinet@gmail.com"
}
],
"require": {
"php": "^5.5 || ^7.0",
"symfony/console": "~3.0",
"symfony/yaml": "~3.0",
"symfony/finder": "~3.0",
"symfony/config": "~3.0",
"twig/twig": "~1.27"
},
"require-dev": {
"symfony/var-dumper": "~3.0",
"phpunit/phpunit": "~5.6 || ~4.8",
"codeclimate/php-test-reporter": "dev-master"
},
"bin": [
"bin/rocket"
],
"autoload": {
"psr-0": {
"Rocket\\ORM": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}