Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,74 +0,0 @@
1
-CHANGELOG
2
-=========
3
-
4
-4.3.0
5
-
6
- * added Finder::ignoreVCSIgnored() to ignore files based on rules listed in .gitignore
7
-
8
-4.2.0
9
-
10
- * added $useNaturalSort option to Finder::sortByName() method
11
- * the `Finder::sortByName()` method will have a new `$useNaturalSort`
12
-   argument in version 5.0, not defining it is deprecated
13
- * added `Finder::reverseSorting()` to reverse the sorting
14
-
15
-4.0.0
16
-
17
- * removed `ExceptionInterface`
18
- * removed `Symfony\Component\Finder\Iterator\FilterIterator`
19
-
20
-3.4.0
21
-
22
- * deprecated `Symfony\Component\Finder\Iterator\FilterIterator`
23
- * added Finder::hasResults() method to check if any results were found
24
-
25
-3.3.0
26
-
27
- * added double-star matching to Glob::toRegex()
28
-
29
-3.0.0
30
-
31
- * removed deprecated classes
32
-
33
-2.8.0
34
-
35
- * deprecated adapters and related classes
36
-
37
-2.5.0
38
- * added support for GLOB_BRACE in the paths passed to Finder::in()
39
-
40
-2.3.0
41
-
42
- * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
43
- * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
44
-
45
-2.2.0
46
-
47
- * added Finder::path() and Finder::notPath() methods
48
- * added finder adapters to improve performance on specific platforms
49
- * added support for wildcard characters (glob patterns) in the paths passed
50
-   to Finder::in()
51
-
52
-2.1.0
53
-
54
- * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
55
-   Finder::sortByModifiedTime()
56
- * added Countable to Finder
57
- * added support for an array of directories as an argument to
58
-   Finder::exclude()
59
- * added searching based on the file content via Finder::contains() and
60
-   Finder::notContains()
61
- * added support for the != operator in the Comparator
62
- * [BC BREAK] filter expressions (used for file name and content) are no more
63
-   considered as regexps but glob patterns when they are enclosed in '*' or '?'
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,74 @@
1
+CHANGELOG
2
+=========
3
+
4
+4.3.0
5
+-----
6
+
7
+ * added Finder::ignoreVCSIgnored() to ignore files based on rules listed in .gitignore
8
+
9
+4.2.0
10
+-----
11
+
12
+ * added $useNaturalSort option to Finder::sortByName() method
13
+ * the `Finder::sortByName()` method will have a new `$useNaturalSort`
14
+   argument in version 5.0, not defining it is deprecated
15
+ * added `Finder::reverseSorting()` to reverse the sorting
16
+
17
+4.0.0
18
+-----
19
+
20
+ * removed `ExceptionInterface`
21
+ * removed `Symfony\Component\Finder\Iterator\FilterIterator`
22
+
23
+3.4.0
24
+-----
25
+
26
+ * deprecated `Symfony\Component\Finder\Iterator\FilterIterator`
27
+ * added Finder::hasResults() method to check if any results were found
28
+
29
+3.3.0
30
+-----
31
+
32
+ * added double-star matching to Glob::toRegex()
33
+
34
+3.0.0
35
+-----
36
+
37
+ * removed deprecated classes
38
+
39
+2.8.0
40
+-----
41
+
42
+ * deprecated adapters and related classes
43
+
44
+2.5.0
45
+-----
46
+ * added support for GLOB_BRACE in the paths passed to Finder::in()
47
+
48
+2.3.0
49
+-----
50
+
51
+ * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
52
+ * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
53
+
54
+2.2.0
55
+-----
56
+
57
+ * added Finder::path() and Finder::notPath() methods
58
+ * added finder adapters to improve performance on specific platforms
59
+ * added support for wildcard characters (glob patterns) in the paths passed
60
+   to Finder::in()
61
+
62
+2.1.0
63
+-----
64
+
65
+ * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
66
+   Finder::sortByModifiedTime()
67
+ * added Countable to Finder
68
+ * added support for an array of directories as an argument to
69
+   Finder::exclude()
70
+ * added searching based on the file content via Finder::contains() and
71
+   Finder::notContains()
72
+ * added support for the != operator in the Comparator
73
+ * [BC BREAK] filter expressions (used for file name and content) are no more
74
+   considered as regexps but glob patterns when they are enclosed in '*' or '?'