-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 953 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
34
35
36
37
38
{
"name": "fyre/schema",
"description": "A database schema library.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "elusivecodes",
"email": "elusivecodes@gmail.com"
}
],
"autoload": {
"psr-4": {
"Fyre\\Schema\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"fyre/cache": "^5.0",
"fyre/container": "^1.0",
"fyre/db": "^6.0",
"fyre/typeparser": "^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"
}
}