Skip to content

Commit 155eb3a

Browse files
author
Jiri Travnicek
committed
phpunit, autoload, formating
1 parent e759ec7 commit 155eb3a

1 file changed

Lines changed: 37 additions & 19 deletions

File tree

composer.json

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,40 @@
11
{
2-
"name": "northys/css-inliner",
3-
"description": "PHP Library that converts css file into html inline styles.",
4-
"license": "LGPL",
5-
"authors": [
6-
{
7-
"name": "Jiri Travnicek"
8-
}
9-
],
10-
"require": {
11-
"symfony/css-selector": "~2.5",
12-
"sabberworm/php-css-parser": "6.0.*"
13-
},
14-
"autoload": {
15-
"classmap": ["src/"]
16-
},
17-
"extra": {
18-
"branch-alias": {
19-
"dev-master": "1.0.x-dev"
20-
}
2+
"name": "northys/css-inliner",
3+
"description": "PHP Library that converts css file into html inline styles.",
4+
"license": "LGPL",
5+
"authors": [
6+
{
7+
"name": "Jiri Travnicek",
8+
"email": "jiri.travnicek@outlook.com",
9+
"role": "Developer"
2110
}
11+
],
12+
"require": {
13+
"symfony/css-selector": "~2.5",
14+
"sabberworm/php-css-parser": "6.0.*"
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "4.*"
18+
},
19+
"autoload": {
20+
"classmap": [
21+
"src/"
22+
],
23+
"psr-4": {
24+
"Northys\\CSSInliner\\": "src/"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Tests\\": "tests/"
30+
}
31+
},
32+
"scripts": {
33+
"test": "phpunit"
34+
},
35+
"extra": {
36+
"branch-alias": {
37+
"dev-master": "1.0.x-dev"
38+
}
39+
}
2240
}

0 commit comments

Comments
 (0)