-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "fyre/orm",
"description": "An ORM library.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "elusivecodes",
"email": "elusivecodes@gmail.com"
}
],
"autoload": {
"psr-4": {
"Fyre\\ORM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"fyre/collection": "^1.0",
"fyre/container": "^1.0",
"fyre/db": "6.0",
"fyre/entity": "^5.0",
"fyre/inflector": "^3.0",
"fyre/lang": "^4.0",
"fyre/schema": "^6.0",
"fyre/validation": "^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"fyre/php-cs-fixer-config": "^1.0",
"phpunit/phpunit": "^11"
},
"scripts": {
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"test": "phpunit tests"
}
}