-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
40 lines (40 loc) · 1.26 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
{
"name": "spam-n-eggs/laravel-mysqlite",
"description": "MySQLite is a Laravel connector for SQLite that emulates MySQL functionality. The currently ported functionalities can be viewed in README.md on the github site.",
"type": "library",
"require": {
"vectorface/mysqlite": "^0.1.4",
"illuminate/database": "^7.0 || ^8.0",
"php": ">=7.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd": "^2.6",
"codedungeon/phpunit-result-printer": "dev-master",
"phpunit/php-code-coverage": "^9.2",
"php-coveralls/php-coveralls": "^2.4"
},
"suggest": {
"symfony/intl": "If you just need the en locale",
"ext-intl": "For locales other than en"
},
"license": "MIT",
"authors": [
{
"name": "Mark J. Horninger",
"email": "thisisafakeemailaddr@gmail.com",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/spam-n-eggs/laravel-mysqlite/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"Mhorninger\\": "src/Mhorninger/"
}
},
"minimum-stability": "dev"
}