Skip to content

Commit bc9267b

Browse files
committed
Added MIT license
1 parent 2895005 commit bc9267b

File tree

1 file changed

+42
-39
lines changed

1 file changed

+42
-39
lines changed

composer.json

Lines changed: 42 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,45 @@
11
{
2-
"name": "apphp/php-mvc-framework",
3-
"type": "project",
4-
"description": "The ApPHP Framework.",
5-
"keywords": [
6-
"framework",
7-
"mvc",
8-
"rapid-development",
9-
"apphp"
10-
],
11-
"homepage": "https://apphp.com",
12-
"license": "LGPL",
13-
"authors": [
14-
{
15-
"name": "Samuel Akopyan",
16-
"email": "[email protected]",
17-
"homepage": "https://apphp.com/php-framework",
18-
"role": "Founder and project lead"
19-
}
20-
],
21-
"minimum-stability": "dev",
22-
"prefer-stable": true,
23-
"config": {
24-
"sort-packages": true
25-
},
26-
"require": {
27-
"php": ">=7.1 || ^8"
28-
},
29-
"require-dev": {
30-
"phpunit/phpunit": "^8.5"
31-
},
32-
"autoload": {
33-
"psr-4": {
34-
"Tests\\": "tests/"
35-
}
36-
},
37-
"scripts": {
38-
"tests-result": "phpunit --colors=always --log-junit test-results.xml",
39-
"tests": "phpunit --colors=always",
40-
"test": "phpunit --colors=always --filter"
2+
"name": "apphp/php-mvc-framework",
3+
"type": "project",
4+
"description": "The ApPHP Framework.",
5+
"keywords": [
6+
"framework",
7+
"mvc",
8+
"rapid-development",
9+
"apphp"
10+
],
11+
"homepage": "https://apphp.com",
12+
"license": [
13+
"LGPL-2.0-or-later",
14+
"MIT"
15+
],
16+
"authors": [
17+
{
18+
"name": "Samuel Akopyan",
19+
"email": "[email protected]",
20+
"homepage": "https://apphp.com/php-framework",
21+
"role": "Founder and project lead"
4122
}
23+
],
24+
"minimum-stability": "dev",
25+
"prefer-stable": true,
26+
"config": {
27+
"sort-packages": true
28+
},
29+
"require": {
30+
"php": ">=7.1 || ^8"
31+
},
32+
"require-dev": {
33+
"phpunit/phpunit": "^8.5"
34+
},
35+
"autoload": {
36+
"psr-4": {
37+
"Tests\\": "tests/"
38+
}
39+
},
40+
"scripts": {
41+
"tests-result": "phpunit --colors=always --log-junit test-results.xml",
42+
"tests": "phpunit --colors=always",
43+
"test": "phpunit --colors=always --filter"
44+
}
4245
}

0 commit comments

Comments
 (0)