Skip to content

Commit 4645a04

Browse files
committed
composer
1 parent aadb994 commit 4645a04

File tree

4 files changed

+1018
-1045
lines changed

4 files changed

+1018
-1045
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Jovanni Lo
3+
Copyright (c) 2018 Jovanni Lo
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
1-
# php-util
2-
common app utilities I use
1+
Bootstrap PHP
2+
============================
3+
4+
A highly extendable PHP library that generate and prints html for [bootstrap](http://getbootstrap.com/).
5+
6+
## Installation
7+
```term
8+
$ composer require lodev09/php-util
9+
```
10+
11+
## Usage
12+
```php
13+
// for example, slugify a string like so
14+
$slugified = \Common\Util::slugify('slugify me');
15+
echo $slugified;
16+
```
17+
18+
## Feedback
19+
All bugs, feature requests, pull requests, feedback, etc., are welcome. Visit my site at [www.lodev09.com](http://www.lodev09.com "www.lodev09.com") or email me at [[email protected]](mailto:[email protected])
20+
21+
## Credits
22+
© 2018 - Coded by Jovanni Lo / [@lodev09](http://twitter.com/lodev09)
23+
24+
## License
25+
Released under the [MIT License](http://opensource.org/licenses/MIT).
26+
See [LICENSE](LICENSE) file.

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "lodev09/php-util",
3+
"description": "Collection of methods that I or you usually use.",
4+
"homepage": "https://github.com/lodev09/php-util",
5+
"license": "MIT",
6+
"keywords": [
7+
"php", "class", "util", "common-util", "methods"
8+
],
9+
"authors": [
10+
{
11+
"name": "Jovanni Lo",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.4"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Common\\": "src/"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)